From 2e81a7adfeeb9a213786b8331b244f97e7b66657 Mon Sep 17 00:00:00 2001 From: Jon Jensen Date: Mon, 27 Nov 2023 17:05:38 -0700 Subject: [PATCH] doc: fix typo that was preventing interpolation Closes #2662 --- CHANGELOG.md | 10 ++++++++++ crates/core/flags/defs.rs | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 066e6a41..b2d8e3b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +14.0.2 (2023-11-27) +=================== +This is a patch release with a few small bug fixes. + +Bug fixes: + +* [BUG #2662](https://github.com/BurntSushi/ripgrep/issues/2662): + Fix typo in documentation for `-i/--ignore-case`. + + 14.0.1 (2023-11-26) =================== This a patch release meant to fix `cargo install ripgrep` on Windows. diff --git a/crates/core/flags/defs.rs b/crates/core/flags/defs.rs index 9200c143..a0ace969 100644 --- a/crates/core/flags/defs.rs +++ b/crates/core/flags/defs.rs @@ -3078,7 +3078,7 @@ Individual patterns can still be matched case sensitively by using inline regex flags. For example, \fB(?\-i)abc\fP will match \fBabc\fP case sensitively even when this flag is used. .sp -This flag overrides \flag{case-sensitive} and flag{smart-case}. +This flag overrides \flag{case-sensitive} and \flag{smart-case}. "# }