From 48df7af2089d1f7be8aee646a89d5423b9a9a6b1 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Thu, 15 Jul 2021 18:51:05 -0600 Subject: Fix some spelling errors --- numpy/_array_api/_array_object.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'numpy/_array_api/_array_object.py') 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 `. + Array API compatible wrapper for :py:meth:`np.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 `. + Array API compatible wrapper for :py:meth:`np.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 `. + Array API compatible wrapper for :py:meth:`np.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 `. + Array API compatible wrapper for :py:meth:`np.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 `. + Array API compatible wrapper for :py:meth:`np.ndarray.T `. See its docstring for more information. """ -- cgit v1.2.1