diff options
author | Aaron Meurer <asmeurer@gmail.com> | 2021-07-15 18:51:05 -0600 |
---|---|---|
committer | Aaron Meurer <asmeurer@gmail.com> | 2021-07-15 18:51:05 -0600 |
commit | 48df7af2089d1f7be8aee646a89d5423b9a9a6b1 (patch) | |
tree | 9bedbab308b6f0d1c6d455785efbc63e31323c8c /numpy/_array_api/_array_object.py | |
parent | 6f98f9e0b73d4ca9e5a7d85091593ca8f0718e97 (diff) | |
download | numpy-48df7af2089d1f7be8aee646a89d5423b9a9a6b1.tar.gz |
Fix some spelling errors
Diffstat (limited to 'numpy/_array_api/_array_object.py')
-rw-r--r-- | numpy/_array_api/_array_object.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/numpy/_array_api/_array_object.py b/numpy/_array_api/_array_object.py index 0219c8532..547143a4b 100644 --- a/numpy/_array_api/_array_object.py +++ b/numpy/_array_api/_array_object.py @@ -837,7 +837,7 @@ class Array: @property def dtype(self) -> Dtype: """ - Array API compatible wrapper for :py:meth:`np.ndaray.dtype <numpy.ndarray.dtype>`. + Array API compatible wrapper for :py:meth:`np.ndarray.dtype <numpy.ndarray.dtype>`. See its docstring for more information. """ @@ -856,7 +856,7 @@ class Array: @property def ndim(self) -> int: """ - Array API compatible wrapper for :py:meth:`np.ndaray.ndim <numpy.ndarray.ndim>`. + Array API compatible wrapper for :py:meth:`np.ndarray.ndim <numpy.ndarray.ndim>`. See its docstring for more information. """ @@ -865,7 +865,7 @@ class Array: @property def shape(self) -> Tuple[int, ...]: """ - Array API compatible wrapper for :py:meth:`np.ndaray.shape <numpy.ndarray.shape>`. + Array API compatible wrapper for :py:meth:`np.ndarray.shape <numpy.ndarray.shape>`. See its docstring for more information. """ @@ -874,7 +874,7 @@ class Array: @property def size(self) -> int: """ - Array API compatible wrapper for :py:meth:`np.ndaray.size <numpy.ndarray.size>`. + Array API compatible wrapper for :py:meth:`np.ndarray.size <numpy.ndarray.size>`. See its docstring for more information. """ @@ -883,7 +883,7 @@ class Array: @property def T(self) -> Array: """ - Array API compatible wrapper for :py:meth:`np.ndaray.T <numpy.ndarray.T>`. + Array API compatible wrapper for :py:meth:`np.ndarray.T <numpy.ndarray.T>`. See its docstring for more information. """ |