diff options
author | Bharat Raghunathan <bharatraghunthan9767@gmail.com> | 2019-12-18 18:22:19 +0530 |
---|---|---|
committer | Bharat Raghunathan <bharatraghunthan9767@gmail.com> | 2019-12-18 18:22:19 +0530 |
commit | 09cd87ca17004651866fce1849357f15a7ac2230 (patch) | |
tree | d1966ffcfda8fe616fbfe5bfcc7f1068657809ff /numpy/core/fromnumeric.py | |
parent | e91f1441f69ea87bc64bec82cfac75eb06282ac3 (diff) | |
download | numpy-09cd87ca17004651866fce1849357f15a7ac2230.tar.gz |
Doc changes per review
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 9f55e104c..33b3b5703 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -2034,7 +2034,7 @@ def clip(a, a_min, a_max, out=None, **kwargs): than 1 become 1. Equivalent to but faster than ``np.maximum(a_min, np.minimum(a, a_max))`` - only if ``a_min < a_max`` else returns ``a_max``. + assuming ``a_min < a_max``. No check is performed to ensure ``a_min < a_max``. Parameters |