From 6e7e5bcde141032285fbb6e869bbc2c77c5aa03d Mon Sep 17 00:00:00 2001 From: Ada Alakbarova <58857108+ada4a@users.noreply.github.com> Date: Tue, 23 Dec 2025 21:51:37 +0100 Subject: [PATCH] doc: fix double space --- src/regexset/string.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regexset/string.rs b/src/regexset/string.rs index 5126a4661e..843629af67 100644 --- a/src/regexset/string.rs +++ b/src/regexset/string.rs @@ -237,7 +237,7 @@ impl RegexSet { /// let hay = "foobar"; /// // We get a match here, but it's probably not intended. /// assert!(set.is_match(&hay[3..])); - /// // No match because the assertions take the context into account. + /// // No match because the assertions take the context into account. /// assert!(!set.is_match_at(hay, 3)); /// ``` #[inline]