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

Commit dfda738

Browse files
committed
Fix closing bracket
1 parent ef23dfb commit dfda738

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)