Skip to content

Commit

Permalink
Fix misleading name in AsciiExt docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zsiciarz committed Jan 5, 2015
1 parent ed22606 commit 73019ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/ascii.rs
Expand Up @@ -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;
}
Expand Down

0 comments on commit 73019ac

Please sign in to comment.