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.
2 parents 83c890b + 73019ac commit cda6acbCopy full SHA for cda6acb
src/libstd/ascii.rs
@@ -53,7 +53,7 @@ pub trait AsciiExt<T = Self> for Sized? {
53
fn to_ascii_lowercase(&self) -> T;
54
55
/// Check that two strings are an ASCII case-insensitive match.
56
- /// Same as `to_ascii_lowercase(a) == to_ascii_lower(b)`,
+ /// Same as `to_ascii_lowercase(a) == to_ascii_lowercase(b)`,
57
/// but without allocating and copying temporary strings.
58
fn eq_ignore_ascii_case(&self, other: &Self) -> bool;
59
}
0 commit comments