Skip to content

Commit ce7ac72

Browse files
committed
docs: fix grammar
1 parent d26ea83 commit ce7ac72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/array_api_stubs/_draft/set_functions.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def unique_all(x: array, /) -> Tuple[array, array, array, array]:
3131
Notes
3232
-----
3333
34-
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, the element order **may** vary between implementations.
34+
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, element order **may** vary between implementations.
3535
3636
- Uniqueness **should** be determined based on value equality (see :func:`~array_api.equal`). For input arrays having floating-point data types, value-based equality implies the following behavior.
3737
@@ -76,7 +76,7 @@ def unique_counts(x: array, /) -> Tuple[array, array]:
7676
Notes
7777
-----
7878
79-
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, the element order **may** vary between implementations.
79+
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, element order **may** vary between implementations.
8080
8181
- Uniqueness **should** be determined based on value equality (see :func:`~array_api.equal`). For input arrays having floating-point data types, value-based equality implies the following behavior.
8282
@@ -119,7 +119,7 @@ def unique_inverse(x: array, /) -> Tuple[array, array]:
119119
Notes
120120
-----
121121
122-
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, the element order **may** vary between implementations.
122+
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, element order **may** vary between implementations.
123123
124124
- Uniqueness **should** be determined based on value equality (see :func:`~array_api.equal`). For input arrays having floating-point data types, value-based equality implies the following behavior.
125125
@@ -159,7 +159,7 @@ def unique_values(x: array, /) -> array:
159159
Notes
160160
-----
161161
162-
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, the element order **may** vary between implementations.
162+
- The order of unique elements returned by this function is left unspecified and thus implementation-dependent. As a consequence, element order **may** vary between implementations.
163163
164164
- Uniqueness **should** be determined based on value equality (see :func:`~array_api.equal`). For input arrays having floating-point data types, value-based equality implies the following behavior.
165165

0 commit comments

Comments
 (0)