summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkotborealis <kotborealis@gmail.com>2021-06-15 17:35:16 +0300
committerGitHub <noreply@github.com>2021-06-15 10:35:16 -0400
commite33d6e73f57d498c65abf83b7fa74ee35f835bcf (patch)
tree8d074f2a7e207f2392ef98cd5031dd7235a947e8
parent478da4f27183c28302e8f4fd63b282453d8fe19c (diff)
doc: fix formatting of nested list
Markdown wants 4 spaces, not 2. PR #1894
-rw-r--r--GUIDE.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/GUIDE.md b/GUIDE.md
index 3e5e399a..c560e28f 100644
--- a/GUIDE.md
+++ b/GUIDE.md
@@ -178,11 +178,11 @@ search. By default, when you search a directory, ripgrep will ignore all of
the following:
1. Files and directories that match glob patterns in these three categories:
- 1. gitignore globs (including global and repo-specific globs).
- 2. `.ignore` globs, which take precedence over all gitignore globs when
- there's a conflict.
- 3. `.rgignore` globs, which take precedence over all `.ignore` globs when
- there's a conflict.
+ 1. gitignore globs (including global and repo-specific globs).
+ 2. `.ignore` globs, which take precedence over all gitignore globs
+ when there's a conflict.
+ 3. `.rgignore` globs, which take precedence over all `.ignore` globs
+ when there's a conflict.
2. Hidden files and directories.
3. Binary files. (ripgrep considers any file with a `NUL` byte to be binary.)
4. Symbolic links aren't followed.