You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2021/06/11 12:08:45 UTC

[commons-rng] branch master updated: Fix comment typo

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git


The following commit(s) were added to refs/heads/master by this push:
     new 37fdd53  Fix comment typo
37fdd53 is described below

commit 37fdd535fdcc824fadd45db0b43aa97602f08996
Author: aherbert <ah...@apache.org>
AuthorDate: Fri Jun 11 13:08:41 2021 +0100

    Fix comment typo
---
 .../rng/sampling/distribution/AhrensDieterExponentialSamplerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/distribution/AhrensDieterExponentialSamplerTest.java b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/distribution/AhrensDieterExponentialSamplerTest.java
index 8ce972d..10fd206 100644
--- a/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/distribution/AhrensDieterExponentialSamplerTest.java
+++ b/commons-rng-sampling/src/test/java/org/apache/commons/rng/sampling/distribution/AhrensDieterExponentialSamplerTest.java
@@ -86,7 +86,7 @@ public class AhrensDieterExponentialSamplerTest {
      */
     @Test
     public void testSamplerWithOneFromRandomGenerator() {
-        // A broken generator that returns zero.
+        // A broken generator that returns all the bits set.
         final UniformRandomProvider rng = new SplitMix64(0) {
             @Override
             public long nextLong() {