diff options
author | Steven Maude <StevenMaude@users.noreply.github.com> | 2017-10-31 10:48:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-31 10:48:48 +0000 |
commit | 3d3ec00c34b80ee899cd7c8a6492986d39735bc4 (patch) | |
tree | 5989e8007d90bd4fc7ab300c8a43a379c4ead340 | |
parent | 0a1e91e51ba3b187c1ecc5eb12f3f4a196ebdd8c (diff) | |
download | python-numpy-3d3ec00c34b80ee899cd7c8a6492986d39735bc4.tar.gz python-numpy-3d3ec00c34b80ee899cd7c8a6492986d39735bc4.tar.bz2 python-numpy-3d3ec00c34b80ee899cd7c8a6492986d39735bc4.zip |
DOC: fix operation plural in along axis glossary
Correct "Many operation can..." to "Many operations can..."
-rw-r--r-- | numpy/doc/glossary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/glossary.py b/numpy/doc/glossary.py index 794c393f6..d28ece428 100644 --- a/numpy/doc/glossary.py +++ b/numpy/doc/glossary.py @@ -11,7 +11,7 @@ Glossary vertically downwards across rows (axis 0), and the second running horizontally across columns (axis 1). - Many operation can take place along one of these axes. For example, + Many operations can take place along one of these axes. For example, we can sum each row of an array, in which case we operate along columns, or axis 1:: |