summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Taylor <jtaylor.debian@googlemail.com>2014-09-07 10:42:04 +0200
committerJulian Taylor <jtaylor.debian@googlemail.com>2014-09-07 10:42:04 +0200
commitd9137a46f35e610a6f9055a27c511c9cb70b6ad7 (patch)
tree24da67eb592234cea2fcb12569bae227483f4c57
parentb5f5441a89a3de3310e9c706bdcc4b975ad0a5b2 (diff)
downloadnumpy-d9137a46f35e610a6f9055a27c511c9cb70b6ad7.tar.gz
DOC: fix missing space in percentile doc
-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
--------