diff --git a/core/simd/simd.odin b/core/simd/simd.odin index a9642b656..78ae16071 100644 --- a/core/simd/simd.odin +++ b/core/simd/simd.odin @@ -1660,7 +1660,7 @@ Graphical representation of the operation: mask: | 1 | 0 | 1 | 0 | +-------------------+ | | - v v + v v +-------------------+ vals: | v0 | v1 | v2 | v3 | +-------------------+ @@ -1958,7 +1958,7 @@ the picture represents the `indices` parameter: idx: | 0 | 3 | 1 | 1 | +-----+-----+-----+-----+ ^ ^ ^ ^ - | | | | + | | | | +-----+-----+-----+-----+ res: | 1.5 | 3.5 | 2.5 | 2.5 | +-----+-----+-----+-----+ @@ -2024,12 +2024,12 @@ the picture represents the `indices` parameter: | | | | | | | | | .--- | ----------------' | - | | | .-----------------' + | | | .-----------------' +-----+-----+-----+-----+ idx: | 0 | 4 | 2 | 5 | +-----+-----+-----+-----+ ^ ^ ^ ^ - | | | | + | | | | +-----+-----+-----+-----+ res: | 1 | 5 | 3 | 6 | +-----+-----+-----+-----+ @@ -2090,12 +2090,12 @@ Graphically, the operation looks as follows. The `t` and `f` represent the | | | | | | | | | .--- | ----------------------' | - | | | .-----------------------------' + | | | .-----------------------------' +-----+-----+-----+-----+ cond: | 1 | 0 | 1 | 0 | +-----+-----+-----+-----+ ^ ^ ^ ^ - | | | | + | | | | +-----+-----+-----+-----+ res: | 1 | 5 | 3 | 6 | +-----+-----+-----+-----+