about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-04-06 22:52:47 +0200
committerGitHub <noreply@github.com>2019-04-06 22:52:47 +0200
commit39d7292ef149b24aff22cf795f2d49a6cd6d0a56 (patch)
tree9a9bdd3a6c408193950a997d4b57cc042a1418e1
parent76d818cf73cd49f09f0dede8d06214d8fda833b4 (diff)
parent564771fa23bc07ab4935e461b0268e11af762884 (diff)
downloadrust-39d7292ef149b24aff22cf795f2d49a6cd6d0a56.tar.gz
rust-39d7292ef149b24aff22cf795f2d49a6cd6d0a56.zip
Rollup merge of #59751 - tbu-:pr_doc_fix_format, r=Centril
Tiny docs fix
-rw-r--r--src/libcore/benches/ascii.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/benches/ascii.rs b/src/libcore/benches/ascii.rs
index 635537e3121..10b6cc61d99 100644
--- a/src/libcore/benches/ascii.rs
+++ b/src/libcore/benches/ascii.rs
@@ -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: