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]