diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-09-14 14:07:11 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 14:07:11 -0600 |
commit | 9377d360297e72680b2140af6b0d0951d6ae3d9e (patch) | |
tree | dba4dde4764551181beb8fc6d4a3820fed8a2283 /numpy/lib/utils.py | |
parent | 0dbc9ad1454aab5044ab0a14b9094db1a3c7c027 (diff) | |
download | numpy-9377d360297e72680b2140af6b0d0951d6ae3d9e.tar.gz |
MAINT: Improve ``_median_nancheck`` docstring.
Diffstat (limited to 'numpy/lib/utils.py')
-rw-r--r-- | numpy/lib/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/utils.py b/numpy/lib/utils.py index cd5bb51e7..1df2ab09b 100644 --- a/numpy/lib/utils.py +++ b/numpy/lib/utils.py @@ -1010,7 +1010,7 @@ def _median_nancheck(data, result, axis): Parameters ---------- data : array - Input data to median function + Sorted input data to median function result : Array or MaskedArray Result of median function. axis : int |