# HG changeset patch # User Martin von Zweigbergk # Date 2017-06-12 18:24:21 # Node ID efebc9f52ecbbbe90fcb83c6a6202f2ec948bbc5 # Parent 2ab1aea34c42a78946b6a6f2415bbb290660d53f help: correct description of "glob:foo/*" matching Unlike what the description says, it does not match recursively. Also add an example of "glob:foo/**" (which does match recursively). diff --git a/mercurial/help/patterns.txt b/mercurial/help/patterns.txt --- a/mercurial/help/patterns.txt +++ b/mercurial/help/patterns.txt @@ -58,7 +58,8 @@ Glob examples:: *.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