diff options
Diffstat (limited to 'doc/source/reference')
-rw-r--r-- | doc/source/reference/random/index.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/random/index.rst b/doc/source/reference/random/index.rst index 2965fad0a..dc17abe9e 100644 --- a/doc/source/reference/random/index.rst +++ b/doc/source/reference/random/index.rst @@ -96,7 +96,7 @@ into more useful distributions, e.g., simulated normal random values. This structure allows alternative bit generators to be used with little code duplication. -Numpy implements several different `BitGenerator` classes implementing +NumPy implements several different `BitGenerator` classes implementing different PRNG algorithms. `default_rng` currently uses `~PCG64` as the default `BitGenerator`. It has better statistical properties and performance over the `~MT19937` algorithm used in the legacy `RandomState`. See |