Skip to content

Commit f67ac5c

Browse files
committed
Fix a typo in the unstack() specification
1 parent fdf6280 commit f67ac5c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/array_api_stubs/_2023_12/manipulation_functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def tile(x: array, repetitions: Tuple[int, ...], /) -> array:
347347

348348
def unstack(x: array, /, *, axis: int = 0) -> Tuple[array, ...]:
349349
"""
350-
Splits an array in a sequence of arrays along the given axis.
350+
Splits an array into a sequence of arrays along the given axis.
351351
352352
Parameters
353353
----------

src/array_api_stubs/_draft/manipulation_functions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def tile(x: array, repetitions: Tuple[int, ...], /) -> array:
347347

348348
def unstack(x: array, /, *, axis: int = 0) -> Tuple[array, ...]:
349349
"""
350-
Splits an array in a sequence of arrays along the given axis.
350+
Splits an array into a sequence of arrays along the given axis.
351351
352352
Parameters
353353
----------

0 commit comments

Comments
 (0)