summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorBharat Raghunathan <bharatraghunthan9767@gmail.com>2020-02-02 08:55:01 +0530
committerGitHub <noreply@github.com>2020-02-02 08:55:01 +0530
commit38064c32b6c258d4d13660ca81cbaeb7105af901 (patch)
treec6baae97602da39b4cddde376d16dde406c78d28 /numpy/core/fromnumeric.py
parentef5675b04d159e3446a4f68785a435d72931ea15 (diff)
downloadnumpy-38064c32b6c258d4d13660ca81cbaeb7105af901.tar.gz
Update according to review
Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'numpy/core/fromnumeric.py')
-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 13ae532c5..ab45ddfe8 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -1445,7 +1445,7 @@ def squeeze(a, axis=None):
squeezed : ndarray
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`.Note that if all axes are squeezed,
+ or a view into `a`. Note that if all axes are squeezed,
the result is a 0d array and not a scalar.
Raises