diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2015-10-07 07:56:23 -0600 |
|---|---|---|
| committer | Charles Harris <charlesr.harris@gmail.com> | 2015-10-07 07:56:23 -0600 |
| commit | 2f2fce9897e8dc3f4204119fcbcd88037c91d60d (patch) | |
| tree | 5ee7ff7930e320009372dc6d36d10ef41f49a831 /numpy/lib | |
| parent | 52912b5181f466bfb5ca29dca44c297f2def8281 (diff) | |
| parent | 84187c8232aa9dc89eb5ca4ca3e34319c9006ae9 (diff) | |
| download | numpy-2f2fce9897e8dc3f4204119fcbcd88037c91d60d.tar.gz | |
Merge pull request #6421 from charris/forwardport-gh-6417
DOC: fix var. reference in percentile docstring
Diffstat (limited to 'numpy/lib')
| -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 |
