Skip to content

Commit e9f5110

Browse files
committed
docs: update copy
1 parent ed2b114 commit e9f5110

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/array_api_stubs/_draft/manipulation_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def flip(x: array, /, *, axis: Optional[Union[int, Tuple[int, ...]]] = None) ->
116116
Returns
117117
-------
118118
out: array
119-
an output array. The returned array **must** have the same data type and shape as ``x`` and whose elements, relative to ``x``, are reordered.
119+
an output array. The returned array **must** have the same data type and shape as ``x``. The returned array must have the same elements as ``x``, but which are reordered relative to ``x``.
120120
"""
121121

122122

@@ -272,7 +272,7 @@ def roll(
272272
Returns
273273
-------
274274
out: array
275-
an output array. The returned array **must** have the same data type as ``x`` and the same elements as ``x``, but which are shifted relative to ``x``.
275+
an output array. The returned array **must** have the same data type as ``x``. The returned array **must** have the same elements as ``x``, but which are shifted relative to ``x``.
276276
"""
277277

278278

0 commit comments

Comments
 (0)