Skip to content

Commit 46b13f0

Browse files
committedAug 10, 2018
Update BitWise Operation README.
1 parent 7f18949 commit 46b13f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/algorithms/math/bits/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ x * 19 = x * 2^4 + x * 2^1 + x * 2^0
112112
```
113113

114114
Now we need to remember that `x * 2^4` is equivalent of shifting `x` left
115-
by `4` bits ()`x << 4`).
115+
by `4` bits (`x << 4`).
116116

117117
> See `multiplyUnsigned` function for further details.
118118

0 commit comments

Comments
 (0)
Please sign in to comment.