10_as_casting.md: fix 256 bit representation (#6)
This commit is contained in:
parent
ee055245e5
commit
fe189a64e4
|
@ -46,7 +46,7 @@ To understand what happens, let's start by looking at how `256u16` is
|
||||||
represented in memory, as a sequence of bits:
|
represented in memory, as a sequence of bits:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
|
0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0
|
||||||
| | |
|
| | |
|
||||||
+---------------+---------------+
|
+---------------+---------------+
|
||||||
First 8 bits Last 8 bits
|
First 8 bits Last 8 bits
|
||||||
|
|
Loading…
Reference in New Issue