diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2022-10-10 08:23:27 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2022-10-10 08:23:27 -0400 |
| commit | 195311657a5eb0a40c1af49de9ffe378a117e0bc (patch) | |
| tree | ffe08a18e9cfa6d02270d1c9f3a494709a9be7b4 | |
| parent | 1518205cceeb1fef27c584d24e92b189ffd234f4 (diff) | |
•bit not •bits
| -rw-r--r-- | docs/spec/system.html | 2 | ||||
| -rw-r--r-- | spec/system.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/spec/system.html b/docs/spec/system.html index fadf914b..22851df2 100644 --- a/docs/spec/system.html +++ b/docs/spec/system.html @@ -633,7 +633,7 @@ <p>In <code><span class='Function'>Range</span></code>, <code><span class='Value'>𝕩</span></code> may be <code><span class='Number'>0</span></code>. In this case the result consists of floating-point numbers in the unit interval from 0 to 1. The numbers should have an overall uniform distribution, but their precision and whether the endpoints 0 and 1 are possible may depend on the implementation.</p> <p>Ranges up to <code><span class='Number'>2</span><span class='Function'>⋆</span><span class='Number'>32</span></code> must be supported (that is, a maximum integer result of <code><span class='Paren'>(</span><span class='Number'>2</span><span class='Function'>⋆</span><span class='Number'>32</span><span class='Paren'>)</span><span class='Function'>-</span><span class='Number'>1</span></code>) if the number system accommodates it. In implementations based on double-precision floats it's preferable but not required to support ranges up to <code><span class='Number'>2</span><span class='Function'>⋆</span><span class='Number'>53</span></code>.</p> <h2 id="bitwise-operations"><a class="header" href="#bitwise-operations">Bitwise operations</a></h2> -<p>The system namespace <code><span class='Value'>•bits</span></code> gives functions for efficiently applying bitwise and two's complement integer operations to arrays of data. These functions should compute result values with native CPU instructions, preferably SIMD if available.</p> +<p>The system namespace <code><span class='Value'>•bit</span></code> gives functions for efficiently applying bitwise and two's complement integer operations to arrays of data. These functions should compute result values with native CPU instructions, preferably SIMD if available.</p> <table> <thead> <tr> diff --git a/spec/system.md b/spec/system.md index f43e20f4..535c81e9 100644 --- a/spec/system.md +++ b/spec/system.md @@ -313,7 +313,7 @@ Ranges up to `2⋆32` must be supported (that is, a maximum integer result of `( ## Bitwise operations -The system namespace `•bits` gives functions for efficiently applying bitwise and two's complement integer operations to arrays of data. These functions should compute result values with native CPU instructions, preferably SIMD if available. +The system namespace `•bit` gives functions for efficiently applying bitwise and two's complement integer operations to arrays of data. These functions should compute result values with native CPU instructions, preferably SIMD if available. | Name | Args | Type | Behavior |----------|------|----------|--------- |
