Author: aherbert
Date: Mon Oct 10 11:47:43 2022
New Revision: 1080993
Log:
Correct comment for code example
Modified:
websites/production/commons/content/proper/commons-rng/index.html
Modified: websites/production/commons/content/proper/commons-rng/index.html
==============================================================================
--- websites/production/commons/content/proper/commons-rng/index.html (original)
+++ websites/production/commons/content/proper/commons-rng/index.html Mon Oct
10 11:47:43 2022
@@ -298,7 +298,7 @@
<pre class="prettyprint">import org.apache.commons.rng.UniformRandomProvider;
import org.apache.commons.rng.simple.RandomSource;
-// Instantiate a "Mersenne-Twister" generator with a factory method.
+// Instantiate a generator with a factory method.
UniformRandomProvider rng = RandomSource.XO_RO_SHI_RO_128_PP.create();
// Use it to produce a floating-point value between 0 and 1.