diff options
author | Tobias Megies <megies@users.noreply.github.com> | 2015-10-06 19:09:28 +0200 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-10-07 07:54:43 -0600 |
commit | 84187c8232aa9dc89eb5ca4ca3e34319c9006ae9 (patch) | |
tree | d52248d04449cbc01c81473e78eae269f59731c7 /numpy/lib/function_base.py | |
parent | 1225aef37298ec82048d0828f6cb7e0be8ed58cc (diff) | |
download | numpy-84187c8232aa9dc89eb5ca4ca3e34319c9006ae9.tar.gz |
DOC: fix var. reference in percentile docstring
The argument for the original input array is named `a`
but in the docstring it was at some point referred to as `arr`.
[skip ci]
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r-- | numpy/lib/function_base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py index b09dcad15..555d08386 100644 --- a/numpy/lib/function_base.py +++ b/numpy/lib/function_base.py @@ -3411,7 +3411,7 @@ def percentile(a, q, axis=None, out=None, keepdims : bool, optional If this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, - the result will broadcast correctly against the original `arr`. + the result will broadcast correctly against the original array `a`. .. versionadded:: 1.9.0 |