Fix typo/formatting issue in DeviceArray docs

This commit is contained in:
Jake VanderPlas 2021-06-07 13:11:37 -07:00
parent 871b91443e
commit 9be4a3e83f

View File

@ -454,7 +454,7 @@ JAX DeviceArray
The JAX :class:`~jax.numpy.DeviceArray` is the core array object in JAX: you can
think of it as the equivalent of a :class:`numpy.ndarray` backed by a memory buffer
on a single device. Like :class:`numpy.ndarray`, most users will not need to
instantiate :class:`DeviceArray`s manually, but rather will create them via
instantiate :class:`DeviceArray` objects manually, but rather will create them via
:mod:`jax.numpy` functions like :func:`~jax.numpy.array`, :func:`~jax.numpy.arange`,
:func:`~jax.numpy.linspace`, and others listed above.