summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2020-06-07 15:41:31 -0400
committerTavian Barnes <tavianator@tavianator.com>2020-06-07 15:41:31 -0400
commita9f97adf92f8000a198de2c48132ba4a39ed1d5c (patch)
tree083b64642c56e179164eb83c3f3469944c0acea7 /README.md
parentb85a344c3645d7748eeb4f3e49e15180d16c5882 (diff)
downloadbfs-a9f97adf92f8000a198de2c48132ba4a39ed1d5c.tar.xz
README: Remove unnecessary single quotes from example
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5cb0ca4..40311ea 100644
--- a/README.md
+++ b/README.md
@@ -96,7 +96,7 @@ $ <strong>bfs</strong> -L <em>haystack</em> -name 'needle'
`bfs` also adds some extra options that make some common tasks easier.
Compare `bfs -name config -exclude -name .git` to
- find ! \( -name '.git' -prune \) -name config
+ find ! \( -name .git -prune \) -name config
Try it!