Skip to content

Commit 5295873

Browse files
committed
Fix warning in take_along_axis for undefined label "broadcasting"
1 parent 2037d49 commit 5295873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpctl/tensor/_indexing_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ def take_along_axis(x, indices, /, *, axis=-1, mode="wrap"):
460460
usm_ndarray:
461461
an array having the same data type as ``x``. The returned array has
462462
the same rank (i.e., number of dimensions) as ``x`` and a shape
463-
determined according to :ref:`broadcasting`, except for the axis
463+
determined according to broadcasting rules, except for the axis
464464
(dimension) specified by ``axis`` whose size must equal the size
465465
of the corresponding axis (dimension) in ``indices``.
466466

0 commit comments

Comments
 (0)