merge with stable
authorAugie Fackler <augie@google.com>
Tue, 13 Jun 2017 10:02:34 -0400
changeset 32811 ff02bb5979c1
parent 32810 6675d23da748 (current diff)
parent 32795 efebc9f52ecb (diff)
child 32812 add613cddcb6
merge with stable
--- a/mercurial/help/patterns.txt	Mon Jun 12 17:24:10 2017 +0200
+++ b/mercurial/help/patterns.txt	Tue Jun 13 10:02:34 2017 -0400
@@ -58,7 +58,8 @@
   *.c            any name ending in ".c" in the current directory
   **.c           any name ending in ".c" in any subdirectory of the
                  current directory including itself.
-  foo/*          any file in directory foo plus all its subdirectories,
+  foo/*          any file in directory foo
+  foo/**         any file in directory foo plus all its subdirectories,
                  recursively
   foo/*.c        any name ending in ".c" in the directory foo
   foo/**.c       any name ending in ".c" in any subdirectory of foo