diff options
author | Pratyay Banerjee <dev@neilblaze.live> | 2023-03-31 11:08:54 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-30 22:38:54 -0700 |
commit | b50568d9e758b489c2a3c409ef4e57b67820f090 (patch) | |
tree | dfbbac85a9396415748907bc78e103e106b883b2 /numpy/core/setup.py | |
parent | 7b27c3ebe7f35684aeb2dfa2fd3125b2a69aed49 (diff) | |
download | numpy-b50568d9e758b489c2a3c409ef4e57b67820f090.tar.gz |
DOC: Fix typos & grammer in docstrings and comments (#23503)
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 52b17bfc8..77561827a 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -20,7 +20,7 @@ from setup_common import * # noqa: F403 NPY_RELAXED_STRIDES_CHECKING = (os.environ.get('NPY_RELAXED_STRIDES_CHECKING', "1") != "0") if not NPY_RELAXED_STRIDES_CHECKING: raise SystemError( - "Support for NPY_RELAXED_STRIDES_CHECKING=0 has been remove as of " + "Support for NPY_RELAXED_STRIDES_CHECKING=0 has been removed as of " "NumPy 1.23. This error will eventually be removed entirely.") # Put NPY_RELAXED_STRIDES_DEBUG=1 in the environment if you want numpy to use a |