1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-06 10:33:34 +00:00

Fix typos in filter docs and unit test assertions

This commit is contained in:
Nick Craig-Wood
2015-10-20 09:16:47 +01:00
parent 6a3580c556
commit 1b95718460
2 changed files with 55 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ A `*` matches anything but not a `/`.
*.jpg - matches "file.jpg"
- matches "directory/file.jpg"
- doesn't match "file.jpg/anotherfile.jpg"
- doesn't match "file.jpg/anotherfile.png"
Use `**` to match anything, including slashes.
@@ -76,7 +76,7 @@ Special characters can be escaped with a `\` before them.
\*.jpg - matches "*.jpg"
\\.jpg - matches "\.jpg"
\[one\].jpeg - matches "[one].jpg"
\[one\].jpg - matches "[one].jpg"
### Differences between rsync and rclone patterns ###