Skip to content

Commit 21fd3a0

Browse files
Update src/array_api_extra/_funcs.py
Co-authored-by: Lucas Colley <[email protected]>
1 parent ad74076 commit 21fd3a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_api_extra/_funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ class at: # pylint: disable=invalid-name # numpydoc ignore=PR02
673673
- If ``x`` is writeable, then after the snippet above you'll have
674674
``x == y == z == [2, 3, 0]``
675675
- If ``x`` is read-only, then you'll end up with
676-
``x == [0, 0, 0]``, ``y == [2, 0, 0]`` and z == ``[0, 3, 0]``.
676+
``x == [0, 0, 0]``, ``y == [2, 0, 0]`` and ``z == [0, 3, 0]``.
677677
678678
The correct pattern to use if you want diverging outputs from the same input is
679679
to enforce copies::

0 commit comments

Comments
 (0)