summaryrefslogtreecommitdiff
path: root/numpy/ma/extras.py
diff options
context:
space:
mode:
authorRobert McGibbon <rmcgibbo@gmail.com>2015-03-01 22:53:19 -0800
committerRobert McGibbon <rmcgibbo@gmail.com>2015-03-02 12:00:18 -0800
commit6ca778d275ade854cfc81a6a975230c4ccd9402c (patch)
treebbabe2a612cb69b4fd6fa33926383804a11e0c33 /numpy/ma/extras.py
parentfba3140f31e67487666529e66241047517a72bcb (diff)
downloadnumpy-6ca778d275ade854cfc81a6a975230c4ccd9402c.tar.gz
DOC: Reconcile docstrings and function signatures where they disagree
Fixed typos in docstrings were updated for functions where the parameter names in the docstring didn't match the function signature.
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r--numpy/ma/extras.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py
index b6082180a..ae4b5b374 100644
--- a/numpy/ma/extras.py
+++ b/numpy/ma/extras.py
@@ -730,6 +730,10 @@ def compress_rowcols(x, axis=None):
Parameters
----------
+ x : array_like, MaskedArray
+ The array to operate on. If not a MaskedArray instance (or if no array
+ elements are masked), `x` is interpreted as a MaskedArray with
+ `mask` set to `nomask`. Must be a 2D array.
axis : int, optional
Axis along which to perform the operation. Default is None.
@@ -1561,7 +1565,7 @@ def flatnotmasked_edges(a):
Parameters
----------
- arr : array_like
+ a : array_like
Input 1-D `MaskedArray`
Returns