Skip to content

Commit aa46f3c

Browse files
committed
Numbers
1 parent 9151328 commit aa46f3c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ shuffle(<list>)
532532
<int> = <int> | <int> # Or
533533
<int> = <int> ^ <int> # Xor (0 if both bits equal)
534534
<int> = <int> << n_bits # Shift left (>> for right)
535-
<int> = ~<int> # Compliment (flips bits)
535+
<int> = ~<int> # Not (also: -<int> - 1)
536536
```
537537

538538

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@
607607
&lt;int&gt; = &lt;int&gt; | &lt;int&gt; <span class="hljs-comment"># Or</span>
608608
&lt;int&gt; = &lt;int&gt; ^ &lt;int&gt; <span class="hljs-comment"># Xor (0 if both bits equal)</span>
609609
&lt;int&gt; = &lt;int&gt; &lt;&lt; n_bits <span class="hljs-comment"># Shift left (&gt;&gt; for right)</span>
610-
&lt;int&gt; = ~&lt;int&gt; <span class="hljs-comment"># Compliment (flips bits)</span>
610+
&lt;int&gt; = ~&lt;int&gt; <span class="hljs-comment"># Not (also: -&lt;int&gt; - 1)</span>
611611
</code></pre></div>
612612

613613
<div><h2 id="combinatorics"><a href="#combinatorics" name="combinatorics">#</a>Combinatorics</h2><ul>

0 commit comments

Comments
 (0)