summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorJames Gerity <snoopjedi@gmail.com>2021-01-24 23:30:17 -0500
committerJames Gerity <snoopjedi@gmail.com>2021-01-24 23:33:20 -0500
commit3eef647fcc486c87da719fa480232fd351384a35 (patch)
tree20f71ae2f6b93405c2a7fac58fc62683385d1d49 /numpy/random
parent223ccea5ca2323ea011138a0aeecfe1bf2ce63b4 (diff)
downloadnumpy-3eef647fcc486c87da719fa480232fd351384a35.tar.gz
DOC: Drop '1-D' from docstring
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/_generator.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_generator.pyx b/numpy/random/_generator.pyx
index 3033a1495..60017e8ce 100644
--- a/numpy/random/_generator.pyx
+++ b/numpy/random/_generator.pyx
@@ -599,7 +599,7 @@ cdef class Generator:
"""
choice(a, size=None, replace=True, p=None, axis=0, shuffle=True)
- Generates a random sample from a given 1-D array
+ Generates a random sample from a given array
Parameters
----------