summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorGabriel-p <gabrielperren@gmail.com>2014-09-07 00:54:08 -0300
committerGabriel-p <gabrielperren@gmail.com>2014-09-07 00:54:08 -0300
commit078af947372fac6a83d95d1ed6fd0585b05f86fd (patch)
tree64a94749270f56cf96dc7db78b1addfdcd1f72a9 /numpy/lib/function_base.py
parent2af027dc1f593a759e33579d03e9f51bd95a6e2b (diff)
downloadnumpy-078af947372fac6a83d95d1ed6fd0585b05f86fd.tar.gz
fix typo
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 3074a2f70..47be2f12f 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -3003,7 +3003,7 @@ def percentile(a, q, axis=None, out=None,
nearest neighbors as well as the `interpolation` parameter will
determine the percentile if the normalized ranking does not match q
exactly. This function is the same as the median if ``q=50``, the same
- as the minimum if ``q=0``and the same as the maximum if ``q=100``.
+ as the minimum if ``q=0`` and the same as the maximum if ``q=100``.
Examples
--------