Skip to content

Commit 9bfb90b

Browse files
committed
nits
1 parent 8505ef5 commit 9bfb90b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

array_api_compat/common/_helpers.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -820,8 +820,8 @@ def at(x, idx=_undef, /):
820820
This implements ``jax.numpy.ndarray.at`` for all backends.
821821
Writeable arrays may be updated in place; you should not rely on it.
822822
823-
Keyword arguments are passed to JAX and are quietly ignored for backends
824-
that don't support them.
823+
Keyword arguments (e.g. ``indices_are_sorted``) are passed to JAX and are
824+
quietly ignored for backends that don't support them.
825825
826826
Examples
827827
--------
@@ -857,7 +857,7 @@ def at(x, idx=_undef, /):
857857
z = at(x, 1).set(3)
858858
859859
In the above example, y == [2, 0, 0] and z == [0, 3, 0] when x is read-only,
860-
and y == z == [2, 3, 0] when x is writeable!
860+
whereas y == z == [2, 3, 0] when x is writeable!
861861
862862
See Also
863863
--------

0 commit comments

Comments
 (0)