doc/hgignore.5.txt
changeset 8782 d19ab9a56bf4
parent 8780 73728f5f69ab
child 9127 35c3f94233a0
--- a/doc/hgignore.5.txt	Thu Jun 11 17:19:48 2009 +0200
+++ b/doc/hgignore.5.txt	Thu Jun 11 17:29:14 2009 +0200
@@ -32,9 +32,9 @@
 ------
 
 An ignore file is a plain text file consisting of a list of patterns,
-with one pattern per line. Empty lines are skipped. The "`#`" character
-is treated as a comment character, and the "`\`" character is treated as
-an escape character.
+with one pattern per line. Empty lines are skipped. The "`#`"
+character is treated as a comment character, and the "`\`" character
+is treated as an escape character.
 
 Mercurial supports several pattern syntaxes. The default syntax used
 is Python/Perl-style regular expressions.
@@ -54,9 +54,9 @@
 follow, until another syntax is selected.
 
 Neither glob nor regexp patterns are rooted. A glob-syntax pattern of
-the form "`*.c`" will match a file ending in "`.c`" in any directory, and
-a regexp pattern of the form "`\.c$`" will do the same. To root a regexp
-pattern, start it with "`^`".
+the form "`*.c`" will match a file ending in "`.c`" in any directory,
+and a regexp pattern of the form "`\.c$`" will do the same. To root a
+regexp pattern, start it with "`^`".
 
 EXAMPLE
 -------