Skip to content

Commit 62d4975

Browse files
committed
docs updates
1 parent 4fd424c commit 62d4975

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353

5454
intersphinx_mapping = {
5555
"python": ("https://docs.python.org/3", None),
56+
"jax": ("https://jax.readthedocs.io/en/latest", None),
5657
}
5758

5859
nitpick_ignore = [

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ checks = [
309309
"ES01",
310310
]
311311
exclude = [ # don't report on objects that match any of these regex
312+
'.*test_at.*',
312313
'.*test_funcs.*',
313314
'.*test_utils.*',
314315
'.*test_version.*',

src/array_api_extra/_funcs.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ class at: # pylint: disable=invalid-name # numpydoc ignore=PR02
566566
x : array
567567
Input array.
568568
idx : index, optional
569-
Only `Array API compliant indices
569+
Only `array API standard compliant indices
570570
<https://data-apis.org/array-api/latest/API_specification/indexing.html>`_
571571
are supported.
572572
@@ -623,8 +623,7 @@ class at: # pylint: disable=invalid-name # numpydoc ignore=PR02
623623
624624
See Also
625625
--------
626-
jax.numpy.ndarray.at : `docs
627-
<https://jax.readthedocs.io/en/latest/_autosummary/jax.numpy.ndarray.at.html>`_.
626+
jax.numpy.ndarray.at : Equivalent array method in JAX.
628627
629628
Notes
630629
-----

src/array_api_extra/_lib/_compat.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ from types import ModuleType
44

55
from ._typing import Array, Device
66

7+
# pylint: disable=missing-class-docstring,unused-argument
8+
79
class ArrayModule(ModuleType):
810
def device(self, x: Array, /) -> Device: ...
911

0 commit comments

Comments
 (0)