summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas A Caswell <tcaswell@bnl.gov>2014-12-12 14:01:50 -0500
committerThomas A Caswell <tcaswell@bnl.gov>2014-12-12 14:01:50 -0500
commitc05734e8092e1550800c42b07dec080a2021e5fa (patch)
treefba26d66fceab90b457f6ce531d4be6639cfb789
parentab6b165d06fe74a738b8ac2f60008ccf4820ba94 (diff)
downloadnumpy-c05734e8092e1550800c42b07dec080a2021e5fa.tar.gz
DOC : added missing space in frexp docstring
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py
index ce9979d12..328e43ca6 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -3365,9 +3365,9 @@ add_newdoc('numpy.core.umath', 'frexp',
----------
x : array_like
Array of numbers to be decomposed.
- out1: ndarray, optional
+ out1 : ndarray, optional
Output array for the mantissa. Must have the same shape as `x`.
- out2: ndarray, optional
+ out2 : ndarray, optional
Output array for the exponent. Must have the same shape as `x`.
Returns