aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/gitignore.txt
diff options
context:
space:
mode:
authorJohan Ruokangas <johan@latehours.net>2023-07-18 13:13:01 +0000
committerJunio C Hamano <gitster@pobox.com>2023-07-18 06:56:19 -0700
commit3437f549dd28fde454977921ae355a0aa3d76011 (patch)
treec6c555805ffa98d5f203cc0586416115ed9fa505 /Documentation/gitignore.txt
parentfb7d80edcae482f4fa5d4be0227dc3054734e5f3 (diff)
downloadgit-3437f549dd28fde454977921ae355a0aa3d76011.tar.gz
gitignore.txt: use backticks instead of double quotes
Among four examples, only this one used "double quoted" sample patterns, but all others marked up the patterns in `monospace`. Signed-off-by: Johan Ruokangas <johan@latehours.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/gitignore.txt')
-rw-r--r--Documentation/gitignore.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/gitignore.txt b/Documentation/gitignore.txt
index 4c17f2356c..810041acd1 100644
--- a/Documentation/gitignore.txt
+++ b/Documentation/gitignore.txt
@@ -174,10 +174,10 @@ EXAMPLES
is not relevant if there is already a middle slash in
the pattern.
- - The pattern "foo/*", matches "foo/test.json"
- (a regular file), "foo/bar" (a directory), but it does not match
- "foo/bar/hello.c" (a regular file), as the asterisk in the
- pattern does not match "bar/hello.c" which has a slash in it.
+ - The pattern `foo/*`, matches `foo/test.json`
+ (a regular file), `foo/bar` (a directory), but it does not match
+ `foo/bar/hello.c` (a regular file), as the asterisk in the
+ pattern does not match `bar/hello.c` which has a slash in it.
--------------------------------------------------------------
$ git status