Skip to content

Commit 3d0a611

Browse files
Fix spacing in choose docstring
Co-authored-by: Anton <[email protected]>
1 parent 725527d commit 3d0a611

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dpnp/dpnp_iface_indexing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@ def choose(a, choices, out=None, mode="wrap"):
254254
>>> choices = np.array([-10, 10])
255255
>>> np.choose(a, choices)
256256
array([[ 10, -10, 10],
257-
[-10, 10, -10],
258-
[ 10, -10, 10]])
257+
[-10, 10, -10],
258+
[ 10, -10, 10]])
259259
"""
260260
mode = _get_indexing_mode(mode)
261261

0 commit comments

Comments
 (0)