summaryrefslogtreecommitdiff
path: root/numpy/ma/extras.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r--numpy/ma/extras.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py
index f369180f2..ab24d41c0 100644
--- a/numpy/ma/extras.py
+++ b/numpy/ma/extras.py
@@ -716,7 +716,7 @@ class mr_class(MAxisConcatenator):
"""Translate slice objects to concatenation along the first axis.
For example:
- >>> mr_[array([1,2,3]), 0, 0, array([4,5,6])]
+ >>> np.ma.mr_[np.ma.array([1,2,3]), 0, 0, np.ma.array([4,5,6])]
array([1, 2, 3, 0, 0, 4, 5, 6])
"""