From 4b408987435a89795735b8dc6cdcdd74dd053772 Mon Sep 17 00:00:00 2001 From: Werner Beroux Date: Wed, 20 Jan 2016 16:16:24 +0100 Subject: [PATCH] Update filtering.md Clarify by removing the extension which makes it confusing if not careful. --- docs/content/filtering.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/filtering.md b/docs/content/filtering.md index a0cbef7c7..3f3ee6cd1 100644 --- a/docs/content/filtering.md +++ b/docs/content/filtering.md @@ -44,9 +44,9 @@ A `*` matches anything but not a `/`. *.jpg - matches "file.jpg" - matches "directory/file.jpg" - - doesn't match "file.jpg/anotherfile.png" + - doesn't match "file.jpg/something" -Use `**` to match anything, including slashes. +Use `**` to match anything, including slashes (`/`). dir/** - matches "dir/file.jpg" - matches "dir/dir1/dir2/file.jpg"