Skip to content

Commit

Permalink
doc: fix --quiet docs
Browse files Browse the repository at this point in the history
The wording was previously inverted, which had the opposite
meaning as was intended.

Fixes #1962
  • Loading branch information
ryanwhitehouse committed Mar 28, 2023
1 parent a7ae9e4 commit 0415448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/core/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2583,8 +2583,8 @@ Do not print anything to stdout. If a match is found in a file, then ripgrep
will stop searching. This is useful when ripgrep is used only for its exit
code (which will be an error if no matches are found).
When --files is used, then ripgrep will stop finding files after finding the
first file that matches all ignore rules.
When --files is used, ripgrep will stop finding files after finding the
first file that does not match any ignore rules.
"
);
let arg = RGArg::switch("quiet").short("q").help(SHORT).long_help(LONG);
Expand Down

0 comments on commit 0415448

Please sign in to comment.