Skip to content

Commit 18ff81d

Browse files
author
Oliver
authored
Fix typo in bit manipulation (#2831)
* fix typos in about.md and introduction.md
1 parent 3cbab4a commit 18ff81d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

concepts/bit-manipulation/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Otherwise, the result's bit is 0.
5757
### Bitwise OR
5858

5959
The bitwise OR (`|`) operator takes two values and performs an OR on each bit.
60-
It compares each bit from the first value with the bit in thes same position from the second value.
60+
It compares each bit from the first value with the bit in the same position from the second value.
6161
If either bit is 1, the result's bit is 1.
6262
Otherwise, it is 0.
6363

concepts/bit-manipulation/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Otherwise, the result's bit is 0.
5555
### Bitwise OR
5656

5757
The bitwise OR (`|`) operator takes two values and performs an OR on each bit.
58-
It compares each bit from the first value with the bit in thes same position from the second value.
58+
It compares each bit from the first value with the bit in the same position from the second value.
5959
If either bit is 1, the result's bit is 1.
6060
Otherwise, it is 0.
6161

0 commit comments

Comments
 (0)