summaryrefslogtreecommitdiff
path: root/numpy/doc/glossary.py
diff options
context:
space:
mode:
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))