summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Berg <sebastian@sipsolutions.net>2021-02-09 16:10:40 -0600
committerGitHub <noreply@github.com>2021-02-09 16:10:40 -0600
commit3823775ca779f5470b46c24d141fd483fee931d5 (patch)
tree7d67b2e5e3e9b55fd84be492cbbd9fcfd15c900d
parent3f3e6045d594e28cd1953de9353b9f7cc103386f (diff)
parent3cb10bc7178b3a753d7cc1f81414a8ab94b92e64 (diff)
downloadnumpy-3823775ca779f5470b46c24d141fd483fee931d5.tar.gz
Merge pull request #18379 from anntzer/mnd
DOC: Fix docstring of _median_nancheck.
-rw-r--r--numpy/lib/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py
index 8f5c6eea3..24252c834 100644
--- a/numpy/lib/utils.py
+++ b/numpy/lib/utils.py
@@ -1015,8 +1015,8 @@ def _median_nancheck(data, result, axis, out):
Input data to median function
result : Array or MaskedArray
Result of median function
- axis : {int, sequence of int, None}, optional
- Axis or axes along which the median was computed.
+ axis : int
+ Axis along which the median was computed.
out : ndarray, optional
Output array in which to place the result.
Returns