From 354ddbfb3f14f68aecb63d87fc31f87400b6f820 Mon Sep 17 00:00:00 2001 From: Pocakking <42542447+Pocakking@users.noreply.github.com> Date: Thu, 2 Apr 2020 20:01:29 +0200 Subject: [PATCH] Fix typo in u8::to_ascii_uppercase and u8::to_ascii_lowercase fith => fifth --- src/libcore/num/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/num/mod.rs b/src/libcore/num/mod.rs index 853092dd85ee9..c85064759ea03 100644 --- a/src/libcore/num/mod.rs +++ b/src/libcore/num/mod.rs @@ -4376,7 +4376,7 @@ impl u8 { #[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")] #[inline] pub fn to_ascii_uppercase(&self) -> u8 { - // Unset the fith bit if this is a lowercase letter + // Unset the fifth bit if this is a lowercase letter *self & !((self.is_ascii_lowercase() as u8) << 5) } @@ -4399,7 +4399,7 @@ impl u8 { #[stable(feature = "ascii_methods_on_intrinsics", since = "1.23.0")] #[inline] pub fn to_ascii_lowercase(&self) -> u8 { - // Set the fith bit if this is an uppercase letter + // Set the fifth bit if this is an uppercase letter *self | ((self.is_ascii_uppercase() as u8) << 5) }