From 041544853c86dde91c49983e5ddd0aa799bd2831 Mon Sep 17 00:00:00 2001 From: Ryan Whitehouse Date: Tue, 28 Mar 2023 13:22:59 +0200 Subject: [PATCH] doc: fix --quiet docs The wording was previously inverted, which had the opposite meaning as was intended. Fixes #1962 --- crates/core/app.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/core/app.rs b/crates/core/app.rs index 51527fefd..cd4875f98 100644 --- a/crates/core/app.rs +++ b/crates/core/app.rs @@ -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);