summaryrefslogtreecommitdiff
path: root/docs/bit-and-bytes-tutorial.md
diff options
context:
space:
mode:
authorNefertumm <nefertum.dev@protonmail.com>2021-12-09 06:20:45 -0800
committerGitHub <noreply@github.com>2021-12-09 15:20:45 +0100
commit9180feb274358bc080cb8f9a380e286464abe0e8 (patch)
tree38f5c8e0f6d3510d1f1da9f7f65e80a0c0736639 /docs/bit-and-bytes-tutorial.md
parent7ccbee3cd719ddd326d7a2c5a89a80dfb856e84b (diff)
downloadwiki-9180feb274358bc080cb8f9a380e286464abe0e8.tar.gz
wiki-9180feb274358bc080cb8f9a380e286464abe0e8.tar.bz2
wiki-9180feb274358bc080cb8f9a380e286464abe0e8.zip
chore: bits and bytes tutorial typo (#657)
Diffstat (limited to 'docs/bit-and-bytes-tutorial.md')
-rw-r--r--docs/bit-and-bytes-tutorial.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/bit-and-bytes-tutorial.md b/docs/bit-and-bytes-tutorial.md
index e3d309e..cf399ba 100644
--- a/docs/bit-and-bytes-tutorial.md
+++ b/docs/bit-and-bytes-tutorial.md
@@ -234,7 +234,7 @@ for (int i = 0; i < 8; ++i)
}
```
-### Bitwise left shit "<<"
+### Bitwise left shift "<<"
This bit operation will shift all the binary values N times as specified. Lets look deeper: