summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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