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 d28ece428..9b7d613ba 100644
--- a/numpy/doc/glossary.py
+++ b/numpy/doc/glossary.py
@@ -233,7 +233,7 @@ Glossary
>>> mask = (x > 2)
>>> mask
- array([False, False, False, True, True], dtype=bool)
+ array([False, False, False, True, True])
>>> x[mask] = -1
>>> x