From b49687302050eafe8462f637840e55c87e8c4fa1 Mon Sep 17 00:00:00 2001 From: chansuke Date: Sun, 10 Nov 2024 22:03:42 +0900 Subject: [PATCH] Update the doc comment of `ASCII_CASE_MASK` --- library/core/src/num/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/num/mod.rs b/library/core/src/num/mod.rs index 5a69dc0c724..51abf65cee6 100644 --- a/library/core/src/num/mod.rs +++ b/library/core/src/num/mod.rs @@ -528,7 +528,7 @@ impl isize { midpoint_impl! { isize, signed } } -/// If the 6th bit is set ascii is lower case. +/// If the bit selected by this mask is set, ascii is lower case. const ASCII_CASE_MASK: u8 = 0b0010_0000; impl u8 {