diff options
| author | Tobias Bucher <tobiasbucher5991@gmail.com> | 2019-04-06 17:27:00 +0200 |
|---|---|---|
| committer | Tobias Bucher <tobiasbucher5991@gmail.com> | 2019-04-06 17:27:00 +0200 |
| commit | 564771fa23bc07ab4935e461b0268e11af762884 (patch) | |
| tree | 0783c1618f85a10a7202c895db0350b9700cde6d | |
| parent | 209b0b41ac39bdeaaa0dd5d52efec4b1f8d0011f (diff) | |
| download | rust-564771fa23bc07ab4935e461b0268e11af762884.tar.gz rust-564771fa23bc07ab4935e461b0268e11af762884.zip | |
Tiny docs fix
| -rw-r--r-- | src/libcore/benches/ascii.rs | 2 |
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: |
