diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2026-01-11 20:09:11 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2026-01-11 20:21:25 +0100 |
| commit | f6b8e086283a63d49327f5b5eecaa3b32434030a (patch) | |
| tree | d0d9cb53b11499a1dac2ab1824d05edc108cbe91 /core/simd | |
| parent | 08c4503875eb77f35cbb1222744ddfcda6fd3090 (diff) | |
simd: fix typos
Diffstat (limited to 'core/simd')
| -rw-r--r-- | core/simd/simd.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/simd/simd.odin b/core/simd/simd.odin index 14bf03f43..e2373d3e2 100644 --- a/core/simd/simd.odin +++ b/core/simd/simd.odin @@ -2207,7 +2207,7 @@ swizzle :: builtin.swizzle /* Extract the set of most-significant bits of a SIMD vector. -This procedure checks the the most-significant bit (MSB) for each lane of vector +This procedure checks the most-significant bit (MSB) for each lane of vector and returns the numbers of lanes with the most-significant bit set. This procedure can be used in conjuction with `lanes_eq` (and other similar procedures) to count the number of matched lanes by computing the cardinality of the resulting @@ -2253,7 +2253,7 @@ extract_msbs :: intrinsics.simd_extract_msbs /* Extract the set of least-significant bits of a SIMD vector. -This procedure checks the the least-significant bit (LSB) for each lane of vector +This procedure checks the least-significant bit (LSB) for each lane of vector and returns the numbers of lanes with the least-significant bit set. This procedure can be used in conjuction with `lanes_eq` (and other similar procedures) to count the number of matched lanes by computing the cardinality of the resulting |