rollup merge of #20566: zsiciarz/fix-stdext-docs

This commit is contained in:
Alex Crichton 2015-01-05 18:41:59 -08:00
commit cda6acb2f1
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ pub trait AsciiExt<T = Self> for Sized? {
fn to_ascii_lowercase(&self) -> T;
/// Check that two strings are an ASCII case-insensitive match.
/// Same as `to_ascii_lowercase(a) == to_ascii_lower(b)`,
/// Same as `to_ascii_lowercase(a) == to_ascii_lowercase(b)`,
/// but without allocating and copying temporary strings.
fn eq_ignore_ascii_case(&self, other: &Self) -> bool;
}