We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7cb3214 commit beb95aeCopy full SHA for beb95ae
array_api_strict/_linear_algebra_functions.py
@@ -61,7 +61,7 @@ def vecdot(x1: Array, x2: Array, /, *, axis: int = -1) -> Array:
61
elif axis < min(-1, -x1.ndim, -x2.ndim):
62
raise ValueError("axis is out of bounds for x1 and x2")
63
64
- # In versions if the standard prior to 2023.12, vecdot applied axis after
+ # In versions of the standard prior to 2023.12, vecdot applied axis after
65
# broadcasting. This is different from applying it before broadcasting
66
# when axis is nonnegative. The below code keeps this behavior for
67
# 2022.12, primarily for backwards compatibility. Note that the behavior
0 commit comments