summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2014-04-11 12:00:11 -0600
committerCharles Harris <charlesr.harris@gmail.com>2014-04-11 12:00:11 -0600
commitbd3ca1eda2cb5159ab5acdea749dead9ca90f575 (patch)
tree7a0d24bb05ab0964d6731f543f038fa4a42c91f8 /numpy
parentf9e0771632428e7594ad3106019cc6cb96498b64 (diff)
parentb8ba37f8d342894eb2b9fff2ad6522103200ae7e (diff)
downloadnumpy-bd3ca1eda2cb5159ab5acdea749dead9ca90f575.tar.gz
Merge pull request #4611 from gdementen/patch-1
fixed bad signature in docstring for uniform()
Diffstat (limited to 'numpy')
-rw-r--r--numpy/random/mtrand/mtrand.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/mtrand/mtrand.pyx b/numpy/random/mtrand/mtrand.pyx
index 7dd73fab7..7ddc1bbf1 100644
--- a/numpy/random/mtrand/mtrand.pyx
+++ b/numpy/random/mtrand/mtrand.pyx
@@ -1103,7 +1103,7 @@ cdef class RandomState:
def uniform(self, low=0.0, high=1.0, size=None):
"""
- uniform(low=0.0, high=1.0, size=1)
+ uniform(low=0.0, high=1.0, size=None)
Draw samples from a uniform distribution.