Skip to content

Commit 9bf66d6

Browse files
committed
Remove warnings
1 parent 9c11e72 commit 9bf66d6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spec/API_specification/array_object.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ An in-place operation must not change the data type or shape of the in-place arr
182182
An in-place operation must have the same behavior (including special cases) as its respective binary (i.e., two operand, non-assignment) operation. For example, after in-place addition ``x1 += x2``, the modified array ``x1`` must always equal the result of the equivalent binary arithmetic operation ``x1 = x1 + x2``.
183183

184184
.. note::
185-
In-place operators must be supported as discussed in :ref:`copyview-mutability`.
185+
In-place operators must be supported as discussed in :ref:`copyview-mutability`.
186186

187187
Arithmetic Operators
188188
""""""""""""""""""""
@@ -217,7 +217,7 @@ A conforming implementation of the array API standard must provide and support a
217217
The results of applying reflected operators must match their non-reflected equivalents.
218218

219219
.. note::
220-
All operators for which ``array <op> scalar`` is implemented must have an equivalent reflected operator implementation.
220+
All operators for which ``array <op> scalar`` is implemented must have an equivalent reflected operator implementation.
221221

222222
Arithmetic Operators
223223
""""""""""""""""""""

spec/purpose_and_scope.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ namespace (e.g. `import package_name.array_api`). This has two issues though:
318318

319319
To address both issues, a uniform way must be provided by a conforming
320320
implementation to access the API namespace, namely a [method on the array
321-
object](method-__array_namespace__):
321+
object](array.__array_namespace__):
322322

323323
```
324324
xp = x.__array_namespace__()

0 commit comments

Comments
 (0)