We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11b4443 commit 1728445Copy full SHA for 1728445
regex-syntax/src/lib.rs
@@ -381,7 +381,7 @@ pub fn try_is_word_character(
381
/// Returns true if and only if the given character is an ASCII word character.
382
///
383
/// An ASCII word character is defined by the following character class:
384
-/// `[_0-9a-zA-Z]'.
+/// `[_0-9a-zA-Z]`.
385
pub fn is_word_byte(c: u8) -> bool {
386
match c {
387
b'_' | b'0'..=b'9' | b'a'..=b'z' | b'A'..=b'Z' => true,
0 commit comments