diff options
author | Bas van Beek <b.f.van.beek@vu.nl> | 2020-12-11 17:33:29 +0100 |
---|---|---|
committer | Bas van Beek <b.f.van.beek@vu.nl> | 2020-12-11 17:33:29 +0100 |
commit | 6139ed42af271d37234320e83a41000d93bdeae1 (patch) | |
tree | 3a6b63ac7096d4e8289b4333625bf76d10eb6b6e /numpy/typing/_array_like.py | |
parent | 597357517617c3a3c3c2d5385d3da2d4433c567f (diff) | |
download | numpy-6139ed42af271d37234320e83a41000d93bdeae1.tar.gz |
STY: Fixed a typo: `ofthe` -> `of the`
Addresses https://github.com/numpy/numpy/pull/17981#discussion_r541018879
Co-Authored-By: Charles Harris <charlesr.harris@gmail.com>
Diffstat (limited to 'numpy/typing/_array_like.py')
-rw-r--r-- | numpy/typing/_array_like.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/_array_like.py b/numpy/typing/_array_like.py index 4ea6974b2..63b67b33a 100644 --- a/numpy/typing/_array_like.py +++ b/numpy/typing/_array_like.py @@ -22,7 +22,7 @@ _DType = TypeVar("_DType", bound="dtype[Any]") if TYPE_CHECKING or HAVE_PROTOCOL: # The `_SupportsArray` protocol only cares about the default dtype - # (i.e. `dtype=None`) ofthe to-be returned array. + # (i.e. `dtype=None`) of the to-be returned array. # Concrete implementations of the protocol are responsible for adding # any and all remaining overloads class _SupportsArray(Protocol[_DType]): |