diff --git a/src/algorithms/math/bits/README.md b/src/algorithms/math/bits/README.md index 05dadaba..5d25efe5 100644 --- a/src/algorithms/math/bits/README.md +++ b/src/algorithms/math/bits/README.md @@ -2,7 +2,11 @@ #### Get Bit -This method shifts the relevant bit to the zeroth position. Then we perform 'AND' operation with one which has bit pattern like '00001'. This clears all bits from the original number except the relevant one. If the relevant bit is one, the result is '1', otherwise the result is '0'. +This method shifts the relevant bit to the zeroth position. +Then we perform `AND` operation with one which has bit +pattern like `0001`. This clears all bits from the original +number except the relevant one. If the relevant bit is one, +the result is `1`, otherwise the result is `0`. > See `getBit` function for further details.