@@ -22,14 +22,14 @@ Some of the features include:
2222![ Demo] ( https://github.com/mellowcandle/bitwise/raw/master/resources/bitwise.gif " Bitwise demo2 ")
2323
2424## Usage
25- _ bitwise_ can be used both Interactively and in command line mode.
25+ _ bitwise_ can be used both interactively and in command line mode.
2626
2727### Command line calculator mode
2828In command line mode, bitwise will calculate the given expression and will output the result in all bases including binary representation.
2929
30- _ bitwise_ detects the base by the preface of the input (_ 0x/0X_ for hexadecimal, leading _ 0_ for octal, _ b_ for binary, and the rest is decimal).
30+ _ bitwise_ detects the base by the prefix of the input (_ 0x/0X_ for hexadecimal, leading _ 0_ for octal, _ b_ for binary, and the rest is decimal).
3131
32- ** NEW** Bitwise now support parsing IPv4 addresses, it will also output the possible IPv4 address in both Network and reveresed byte order.
32+ ** NEW** Bitwise now support parsing IPv4 addresses, it will also output the possible IPv4 address in both Network and reversed byte order.
3333
3434### Examples:
3535
@@ -53,7 +53,7 @@ To move around use the arrow keys, or use _vi_ key bindings : <kbd> h </kbd> <kb
5353Leave the program by pressing <kbd > q </kbd >.
5454
5555##### Binary specific movement
56- You can toggle a bit bit using the <kbd > space </kbd > key.
56+ You can toggle a bit using the <kbd > space </kbd > key.
5757You can jump a byte forward using <kbd > w </kbd > and backwards one byte using <kbd > b </kbd >.
5858
5959#### Bitwise operation in interactive mode
@@ -62,7 +62,7 @@ You can jump a byte forward using <kbd> w </kbd> and backwards one byte using <k
6262
6363Reducing or extending the bit width interactively is also very easy, just use:
6464<kbd > ! </kbd > for 8bit, <kbd > @ </kbd > for 16Bit, <kbd > $ </kbd > for 32Bit and <kbd > * </kbd > for 64Bit.
65- When changing the bit width, the number is * masked* with the new width, so you might lost precision, use with care.
65+ When changing the bit width, the number is * masked* with the new width, so you might lose precision, use with care.
6666
6767##### NOT:
6868
@@ -145,7 +145,7 @@ brew install bitwise
145145```
146146
147147### Windows
148- NCurses doesn't support windows . You can use the windows subsystem for Linux as a workaround.
148+ NCurses doesn't support Windows . You can use the Windows Subsystem for Linux as a workaround.
149149
150150### Nix
151151```
@@ -188,7 +188,7 @@ Running unit tests by typing
188188``` make check ```
189189
190190### Contribution
191- * Instal prerequisites
191+ * Install prerequisites
192192* Fork the repo
193193* Run ``` ./bootstrap.sh ```
194194* Follow the building from source section.
0 commit comments