diff options
| author | Zbigniew Siciarz <zbigniew@siciarz.net> | 2015-01-05 08:44:18 +0100 |
|---|---|---|
| committer | Zbigniew Siciarz <zbigniew@siciarz.net> | 2015-01-05 08:44:18 +0100 |
| commit | 73019ac10ecbe4929f9e955bf067f6ec2a389e27 (patch) | |
| tree | 3da97c21456eba163705e0f7b317d1d03f16a8df /src/libstd | |
| parent | ed22606c8382822efc555f72f895c560289a5c70 (diff) | |
| download | rust-73019ac10ecbe4929f9e955bf067f6ec2a389e27.tar.gz rust-73019ac10ecbe4929f9e955bf067f6ec2a389e27.zip | |
Fix misleading name in AsciiExt docs
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/ascii.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs index bcd87f6786d..e9b7e33bcf5 100644 --- a/src/libstd/ascii.rs +++ b/src/libstd/ascii.rs @@ -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; } |
