Skip to content

Commit 53e1eb5

Browse files
committed
nit
1 parent 885f35d commit 53e1eb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array_api_extra/_lib/_utils/_typing.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Array(Protocol): # pylint: disable=missing-class-docstring
6767
def size(self) -> int | None: ...
6868
@property
6969
def T(self) -> Array: ... # pylint: disable=invalid-name
70-
# Collection operations (note: an Array does not have to be Sized)
70+
# Collection operations (note: an Array does not have to be Sized or Iterable)
7171
def __getitem__(self, key: GetIndex, /) -> Array: ...
7272
def __setitem__(self, key: SetIndex, value: Array | complex, /) -> None: ...
7373
# Materialization methods (may raise on lazy arrays)

0 commit comments

Comments
 (0)