Skip to content

Commit 9b71aeb

Browse files
authored
Apply suggestions from code review
1 parent 9c2457d commit 9b71aeb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/array_api_extra/_delegation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def isclose(
5353
Parameters
5454
----------
5555
a, b : Array | int | float | complex | bool
56-
Input objects to compare. At least one must be an Array API object.
56+
Input objects to compare. At least one must be an array.
5757
rtol : array_like, optional
5858
The relative tolerance parameter (see Notes).
5959
atol : array_like, optional

src/array_api_extra/_lib/_funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ def kron(a: Array, b: Array, /, *, xp: ModuleType | None = None) -> Array:
359359
Parameters
360360
----------
361361
a, b : Array | int | float | complex
362-
Input arrays or scalars. At least one must be an Array API object.
362+
Input arrays or scalars. At least one must be an array.
363363
xp : array_namespace, optional
364364
The standard-compatible namespace for `a` and `b`. Default: infer.
365365

src/array_api_extra/_lib/_utils/_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def asarrays(
125125
a, b : Array | int | float | complex | bool
126126
Input arrays or scalars. At least one must be an array.
127127
xp : ModuleType
128-
The array API namespace.
128+
The standard-compatible namespace for the returned arrays.
129129
130130
Returns
131131
-------

0 commit comments

Comments
 (0)