summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-07-26 14:13:15 -0700
committerJunio C Hamano <gitster@pobox.com>2023-07-26 14:13:15 -0700
commit89672f14d52ebe5001ccf0bd44a11355817cc262 (patch)
tree7f7c756f62674da791fee7f162b5ede78b353dd7
parenta80be152923a46f04a06bade7bcc72870e46ca09 (diff)
parent3437f549dd28fde454977921ae355a0aa3d76011 (diff)
downloadgit-89672f14d52ebe5001ccf0bd44a11355817cc262.tar.xz
Merge branch 'jr/gitignore-doc-example-markup'
Doc update. * jr/gitignore-doc-example-markup: gitignore.txt: use backticks instead of double quotes
-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