diff options
author | Hollow Man <hollowman@hollowman.ml> | 2020-11-29 02:03:31 +0800 |
---|---|---|
committer | Hollow Man <hollowman@hollowman.ml> | 2020-11-29 02:12:07 +0800 |
commit | b1a61b7642506035f54252f4fd9769c8cac5c2e1 (patch) | |
tree | 9af811872e733ab22263a0adc4ec2a0ca2f2928a /doc | |
parent | 8988d371ba3652daf991169750e48b01aa16240c (diff) | |
download | numpy-b1a61b7642506035f54252f4fd9769c8cac5c2e1.tar.gz |
DOC: fix typo in glossary.rst
Responsiblity -> Responsibility
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/glossary.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/glossary.rst b/doc/source/glossary.rst index 17071c8f1..57e3bcf92 100644 --- a/doc/source/glossary.rst +++ b/doc/source/glossary.rst @@ -502,7 +502,7 @@ Glossary Some NumPy routines always return views, some always return copies, some may return one or the other, and for some the choice can be specified. - Responsiblity for managing views and copies falls to the programmer. + Responsibility for managing views and copies falls to the programmer. :func:`numpy.shares_memory` will check whether ``b`` is a view of ``a``, but an exact answer isn't always feasible, as the documentation page explains. |