Skip to content

Commit 8aa0ffc

Browse files
committed
Typo: byte -> bit
1 parent b3e09f8 commit 8aa0ffc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Chapter-4/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ These functions are defined in [string.cc](https://github.com/SamyPesse/How-to-M
3030
3131
#### C types
3232
33-
During the next step, we are going to use different types in our code, most of the types we are going to use unsigned types (all the bytes are used to stored the integer, in signed types one byte is used to signal the sign):
33+
During the next step, we are going to use different types in our code, most of the types we are going to use unsigned types (all the bits are used to stored the integer, in signed types one bit is used to signal the sign):
3434
3535
```cpp
3636
typedef unsigned char u8;
@@ -64,4 +64,4 @@ FLAG= $(INCDIR) -g -O2 -w -trigraphs -fno-builtin -fno-exceptions -fno-stack-pr
6464
# Assembly compiler
6565
ASM=nasm
6666
ASMFLAG=-f elf -o
67-
```
67+
```

0 commit comments

Comments
 (0)