Skip to content

Commit

Permalink
Fixed typos in README file.
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect authored Aug 13, 2018
1 parent f5a3cbb commit 11ce102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ h[nibble: 1] // 0x1
h[nibble: 1] = 0x7
h.value // 0x7F

0x1F.hex << 1 // 0x1F0 (bitwise nibble shift left)
0x10.hex >> 1 // 0x1 (bitwise nibble shift right)
0x1F.hex <<<< 1 // 0x1F0 (bitwise nibble shift left)
0x10.hex >>>> 1 // 0x1 (bitwise nibble shift right)

// test for equatability with ultimate flexibility,
// without needing to extract the .value first, casting or converting
Expand Down

0 comments on commit 11ce102

Please sign in to comment.