From 73019ac10ecbe4929f9e955bf067f6ec2a389e27 Mon Sep 17 00:00:00 2001 From: Zbigniew Siciarz Date: Mon, 5 Jan 2015 08:44:18 +0100 Subject: [PATCH] Fix misleading name in AsciiExt docs --- src/libstd/ascii.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 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; }