Remove bogus "non-empty" qualifier in '*' discussion.
authorWayne Davison <wayned@samba.org>
Mon, 15 Sep 2008 02:57:02 +0000 (19:57 -0700)
committerWayne Davison <wayned@samba.org>
Mon, 15 Sep 2008 02:58:15 +0000 (19:58 -0700)
rsync.yo

index 79cbf07..6eb226f 100644 (file)
--- a/rsync.yo
+++ b/rsync.yo
@@ -2401,7 +2401,7 @@ itemization(
   it() rsync chooses between doing a simple string match and wildcard
   matching by checking if the pattern contains one of these three wildcard
   characters: '*', '?', and '[' .
-  it() a '*' matches any non-empty path component (it stops at slashes).
+  it() a '*' matches any path component, but it stops at slashes.
   it() use '**' to match anything, including slashes.
   it() a '?' matches any character except a slash (/).
   it() a '[' introduces a character class, such as [a-z] or [[:alpha:]].