Fixed spelling mistakes

This commit is contained in:
Borys Levytskyi
2015-04-03 22:05:22 +03:00
parent b6fbb40e63
commit a908cf53f3

View File

@@ -52,14 +52,13 @@
<p class="section"> <p class="section">
<strong>Supportd Bitwise Operations</strong> <strong>Supported Bitwise Operations</strong>
<ul> <ul>
<li><code>&</code> bitwise AND</li> <li><code>&</code> bitwise AND</li>
<li><code>|</code> bitwise inclusive OR</li> <li><code>|</code> bitwise inclusive OR</li>
<li><code>^</code> bitwise exclusive XOR</li> <li><code>^</code> bitwise exclusive XOR</li>
<li><code><<</code> left shift</li> <li><code><<</code> left shift</li>
<li><code>>></code> right shift</li> <li><code>>></code> right shift</li>
<li><code>~</code> bitwise NOT (one's complement) (unary)</li>
</ul> </ul>
</p> </p>