Skip to content

Commit beb95ae

Browse files
committed
Fix typo
1 parent 7cb3214 commit beb95ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

array_api_strict/_linear_algebra_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def vecdot(x1: Array, x2: Array, /, *, axis: int = -1) -> Array:
6161
elif axis < min(-1, -x1.ndim, -x2.ndim):
6262
raise ValueError("axis is out of bounds for x1 and x2")
6363

64-
# In versions if the standard prior to 2023.12, vecdot applied axis after
64+
# In versions of the standard prior to 2023.12, vecdot applied axis after
6565
# broadcasting. This is different from applying it before broadcasting
6666
# when axis is nonnegative. The below code keeps this behavior for
6767
# 2022.12, primarily for backwards compatibility. Note that the behavior

0 commit comments

Comments
 (0)