]> git.lizzy.rs Git - rust.git/blobdiff - src/libcore/benches/ascii.rs
Tiny docs fix
[rust.git] / src / libcore / benches / ascii.rs
index 635537e3121581ca31d6b86980f127c05ec338d5..10b6cc61d996a5480896482419b9091a4126e7aa 100644 (file)
@@ -2,7 +2,7 @@
 // after wrap-adding 0x1F:
 //
 //     b'a' + 0x1F == 0x80 == 0b1000_0000
-//     b'z' + 0x1F == 0x98 == 0b10011000
+//     b'z' + 0x1F == 0x98 == 0b1001_1000
 //
 // Lower-case ASCII 'z' is the last byte that has its highest bit unset
 // after wrap-adding 0x05: