diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-01-05 18:41:59 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-05 18:41:59 -0800 |
| commit | cda6acb2f10e159fc6d3cb1112f2011f7bcdb206 (patch) | |
| tree | 8e5d0802f9facc8416e345c08ea0b301f02304f8 /src/libstd | |
| parent | 83c890b4542abf60f833df3da1924ed3ce559862 (diff) | |
| parent | 73019ac10ecbe4929f9e955bf067f6ec2a389e27 (diff) | |
| download | rust-cda6acb2f10e159fc6d3cb1112f2011f7bcdb206.tar.gz rust-cda6acb2f10e159fc6d3cb1112f2011f7bcdb206.zip | |
rollup merge of #20566: zsiciarz/fix-stdext-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; } |
