Fix missing " on glob pattern

Fixes #11551
This commit is contained in:
tbotalla 2020-01-29 15:19:09 -03:00 committed by Karen Metts
parent 52f7946958
commit 80cd89673d

View file

@ -41,7 +41,7 @@ Matches config files ending in `.conf` in the specified path.
`"/var/log/*.log"`::
Matches log files ending in `.log` in the specified path.
`"/var/log/**/*.log`::
`"/var/log/**/*.log"`::
Matches log files ending in `.log` in subdirectories under the specified path.
`"/path/to/logs/{app1,app2,app3}/data.log"`::