10_as_casting.md: fix 256 bit representation (#6)
authorWojtek Porczyk <woju@users.noreply.github.com>
Fri, 17 May 2024 14:58:50 +0000 (16:58 +0200)
committerGitHub <noreply@github.com>
Fri, 17 May 2024 14:58:50 +0000 (16:58 +0200)
book/src/02_basic_calculator/10_as_casting.md

index bbf837c..e878f63 100644 (file)
@@ -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:
 
 ```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