Skip to content

Commit

Permalink
docs: fix typo in filter pattern example
Browse files Browse the repository at this point in the history
  • Loading branch information
rmorey committed Aug 18, 2022
1 parent 1107da7 commit 58b327a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/filtering.md
Expand Up @@ -177,7 +177,7 @@ them into regular expressions.
| Rooted | `/*.jpg` | `/file.jpg` | `/file.png` |
| | | `/file2.jpg` | `/dir/file.jpg` |
| Alternates | `*.{jpg,png}` | `/file.jpg` | `/file.gif` |
| | | `/dir/file.gif` | `/dir/file.gif` |
| | | `/dir/file.png` | `/dir/file.gif` |
| Path Wildcard | `dir/**` | `/dir/anyfile` | `file.png` |
| | | `/subdir/dir/subsubdir/anyfile` | `/subdir/file.png` |
| Any Char | `*.t?t` | `/file.txt` | `/file.qxt` |
Expand Down

0 comments on commit 58b327a

Please sign in to comment.