summaryrefslogtreecommitdiff
path: root/numpy/doc/creation.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/doc/creation.py')
-rw-r--r--numpy/doc/creation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/creation.py b/numpy/doc/creation.py
index 133765678..d57c7c261 100644
--- a/numpy/doc/creation.py
+++ b/numpy/doc/creation.py
@@ -76,7 +76,7 @@ generally will not do for arbitrary start, stop, and step values.
indices() will create a set of arrays (stacked as a one-higher dimensioned
array), one per dimension with each representing variation in that dimension.
-An examples illustrates much better than a verbal description: ::
+An example illustrates much better than a verbal description: ::
>>> np.indices((3,3))
array([[[0, 0, 0], [1, 1, 1], [2, 2, 2]], [[0, 1, 2], [0, 1, 2], [0, 1, 2]]])