diff options
author | Eertmans <jeertmans@icloud.com> | 2021-01-19 19:35:44 +0100 |
---|---|---|
committer | Eertmans <jeertmans@icloud.com> | 2021-01-19 19:35:44 +0100 |
commit | f2faf842686616cb8e8c298a496fa621ec127c91 (patch) | |
tree | fc1a2f757c465e9b41349fa18baca29c62228916 | |
parent | 9c63473c30b773dcab7adf699e1bd5dfcbb46e9b (diff) | |
download | numpy-f2faf842686616cb8e8c298a496fa621ec127c91.tar.gz |
Fixing typo in docstring
-rw-r--r-- | numpy/random/_generator.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/_generator.pyx b/numpy/random/_generator.pyx index e00bc4d98..7d652ce89 100644 --- a/numpy/random/_generator.pyx +++ b/numpy/random/_generator.pyx @@ -1092,7 +1092,7 @@ cdef class Generator: 0.0 # may vary >>> abs(sigma - np.std(s, ddof=1)) - 0.1 # may vary + 0.0 # may vary Display the histogram of the samples, along with the probability density function: |