summaryrefslogtreecommitdiff
path: root/doc/source/reference/random
diff options
context:
space:
mode:
authorOleksandr Pavlyk <oleksandr.pavlyk@intel.com>2019-07-17 09:21:10 -0500
committerOleksandr Pavlyk <oleksandr.pavlyk@intel.com>2019-07-17 09:21:10 -0500
commitdfecc1709bb58b518f975fb983613bda1565cd52 (patch)
tree988eff54cfb19b65ec99a4df86e5449f5b358d64 /doc/source/reference/random
parent32855c7fb95322906c9484bdc3466752be7e94bf (diff)
downloadnumpy-dfecc1709bb58b518f975fb983613bda1565cd52.tar.gz
edited opening statement per PR feedback
Diffstat (limited to 'doc/source/reference/random')
-rw-r--r--doc/source/reference/random/index.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/reference/random/index.rst b/doc/source/reference/random/index.rst
index 192328c5e..5b4dcf567 100644
--- a/doc/source/reference/random/index.rst
+++ b/doc/source/reference/random/index.rst
@@ -32,8 +32,9 @@ instance's methods are imported into the numpy.random namespace, see
Quick Start
-----------
-By default, `~Generator` uses sequences provided by `~pcg64.PCG64` which will be
-statistically more reliable than the legacy methods in `~.RandomState`
+By default, `~Generator` uses bits provided by `~pcg64.PCG64` which
+has better statistical properties than the legacy mt19937 random
+number generator in `~.RandomState`
.. code-block:: python