Skip to content

Commit

Permalink
DOC: fixes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
mattip committed Feb 19, 2019
1 parent 3aab0d5 commit b66d835
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions numpy/random/mtrand/mtrand.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2683,7 +2683,7 @@ cdef class RandomState:
Parameters
----------
a : float or array_like of floats
Shape of the distribution. Must be non-negative.
Shape of the distribution. Must all be positive.
size : int or tuple of ints, optional
Output shape. If the given shape is, e.g., ``(m, n, k)``, then
``m * n * k`` samples are drawn. If size is ``None`` (default),
Expand Down Expand Up @@ -3328,8 +3328,8 @@ cdef class RandomState:
mean : float or array_like of floats, optional
Mean value of the underlying normal distribution. Default is 0.
sigma : float or array_like of floats, optional
Standard deviation of the underlying normal distribution. Should
be greater than zero. Default is 1.
Standard deviation of the underlying normal distribution. Must be
non-negative. Default is 1.
size : int or tuple of ints, optional
Output shape. If the given shape is, e.g., ``(m, n, k)``, then
``m * n * k`` samples are drawn. If size is ``None`` (default),
Expand Down

0 comments on commit b66d835

Please sign in to comment.