From 0971927e85cd0218de3c718df38534abb51d1990 Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 14 Nov 2021 12:00:27 -0600 Subject: [PATCH] Fix typo in comment --- src/re_unicode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/re_unicode.rs b/src/re_unicode.rs index 142c78fb1..e4871a621 100644 --- a/src/re_unicode.rs +++ b/src/re_unicode.rs @@ -538,7 +538,7 @@ impl Regex { mut rep: R, ) -> Cow<'t, str> { // If we know that the replacement doesn't have any capture expansions, - // then we can fast path. The fast path can make a tremendous + // then we can use the fast path. The fast path can make a tremendous // difference: // // 1) We use `find_iter` instead of `captures_iter`. Not asking for