summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-05-31 09:50:44 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-05-31 09:50:44 -0600
commitb1c69df01b673cc086065112da6780d8548a0dfa (patch)
treea3701ad6587f7feaac556005eb96cf47f953f606
parentd6c94322d759d4e7d0d8c4a1bc3f6ea95e155d57 (diff)
parent016b21186b87c68a0aa09cca939187f6f29d1900 (diff)
downloadnumpy-b1c69df01b673cc086065112da6780d8548a0dfa.tar.gz
Merge pull request #4764 from KillaW0lf04/master
Fix minor error in "squeeze" docstring
-rw-r--r--numpy/core/fromnumeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index a2d2f3100..49fd57e29 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -1090,7 +1090,7 @@ def squeeze(a, axis=None):
Returns
-------
squeezed : ndarray
- The input array, but with with all or a subset of the
+ The input array, but with all or a subset of the
dimensions of length 1 removed. This is always `a` itself
or a view into `a`.