about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2023-03-27 18:56:22 +0200
committerGitHub <noreply@github.com>2023-03-27 18:56:22 +0200
commitc0dec2bbe35a69fab67d8549280caae5d43527a7 (patch)
tree5d6ab7f730f13fe9468eb77838a139f4de6bce0a
parent17f2c2bbd341087695b181b52e423512161c092f (diff)
parent3e16c56ffcca750a85d25cf32f79e13caf0a6533 (diff)
downloadrust-c0dec2bbe35a69fab67d8549280caae5d43527a7.tar.gz
rust-c0dec2bbe35a69fab67d8549280caae5d43527a7.zip
Rollup merge of #109666 - clubby789:ascii-case-comment, r=fee1-dead
Correct ASCII case comment

Fixes #109508
-rw-r--r--library/core/src/num/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/mod.rs b/library/core/src/num/mod.rs
index a50c91579fa..9b812bbfc23 100644
--- a/library/core/src/num/mod.rs
+++ b/library/core/src/num/mod.rs
@@ -414,7 +414,7 @@ impl isize {
     }
 }
 
-/// If 6th bit set ascii is upper case.
+/// If 6th bit is set ascii is lower case.
 const ASCII_CASE_MASK: u8 = 0b0010_0000;
 
 impl u8 {