1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-06-14 22:15:13 +02:00

doc: fix typo in comments

PR #2741
This commit is contained in:
SuperSpecialSweet
2024-02-22 19:57:58 +08:00
committed by GitHub
parent e92e2ef813
commit 6ebebb2aaa

View File

@ -484,9 +484,9 @@ impl HiArgs {
if self.crlf {
builder.crlf(true);
}
// We don't need to set this in multiline mode since mulitline
// We don't need to set this in multiline mode since multiline
// matchers don't use optimizations related to line terminators.
// Moreover, a mulitline regex used with --null-data should
// Moreover, a multiline regex used with --null-data should
// be allowed to match NUL bytes explicitly, which this would
// otherwise forbid.
if self.null_data {