Skip to content

Commit 3449c03

Browse files
committed
Fix type in docstring of dpnp.put()
1 parent acfa26a commit 3449c03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dpnp/dpnp_iface_indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1162,7 +1162,7 @@ def put(a, ind, v, /, *, axis=None, mode="wrap"):
11621162
v : {scalar, array_like}
11631163
Values to be put into `a`. Must be broadcastable to the result shape
11641164
``a.shape[:axis] + ind.shape + a.shape[axis+1:]``.
1165-
axis {None, int}, optional
1165+
axis : {None, int}, optional
11661166
The axis along which the values will be placed. If `a` is 1-D array,
11671167
this argument is optional.
11681168
Default: ``None``.

0 commit comments

Comments
 (0)