summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py
index 34ac59984..e3600406c 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -2393,11 +2393,11 @@ add_newdoc('numpy.core.umath', 'fmin',
Examples
--------
>>> np.fmin([2, 3, 4], [1, 5, 2])
- array([2, 5, 4])
+ array([1, 3, 2])
>>> np.fmin(np.eye(2), [0.5, 2])
- array([[ 1. , 2. ],
- [ 0.5, 2. ]])
+ array([[ 0.5, 0. ],
+ [ 0. , 1. ]])
>>> np.fmin([np.nan, 0, np.nan],[0, np.nan, np.nan])
array([ 0., 0., NaN])