summaryrefslogtreecommitdiff
path: root/numpy/doc/glossary.py
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-02-21 11:33:41 -0800
committerDongjoon Hyun <dongjoon@apache.org>2016-02-25 11:37:32 -0800
commit2556b9ff1ae621e311053bd5f2b34edb86a8cb68 (patch)
treeee25cd0a9f3d40a4292b342ce664f1c417d0deb2 /numpy/doc/glossary.py
parent89d95a0660ffd5890916edb78a6d4a9ccb5b3ad0 (diff)
downloadnumpy-2556b9ff1ae621e311053bd5f2b34edb86a8cb68.tar.gz
DOC: Fix more typos in docs and comments.
Diffstat (limited to 'numpy/doc/glossary.py')
-rw-r--r--numpy/doc/glossary.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/glossary.py b/numpy/doc/glossary.py
index 4a3238491..91cd74651 100644
--- a/numpy/doc/glossary.py
+++ b/numpy/doc/glossary.py
@@ -182,7 +182,7 @@ Glossary
>>> [item**2 for item in x]
[1, 4, 9]
- It is often used in combintion with ``enumerate``::
+ It is often used in combination with ``enumerate``::
>>> keys = ['a','b','c']
>>> for n, k in enumerate(keys):
... print("Key %d: %s" % (n, k))