Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit ed7767b

Browse files
authored
Merge pull request #106 from ngzhian/fix-python
Fix pseudocode, was causing syntax highlight issues
2 parents 36a8199 + dfda738 commit ed7767b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proposals/simd/SIMD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def S.shuffle(a, b, s):
300300
if s[i] < S.lanes:
301301
result[i] = a[s[i]]
302302
else:
303-
result[i] = b[s[i] - S.lanes
303+
result[i] = b[s[i] - S.lanes]
304304
return result
305305
```
306306

0 commit comments

Comments
 (0)