diff --git a/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java b/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java index 2d78005aa..a78fd3882 100644 --- a/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java +++ b/src/main/java/org/apache/commons/math4/random/BaseRandomGenerator.java @@ -175,7 +175,8 @@ public abstract class BaseRandomGenerator * Generates random bytes and places them into a user-supplied array. * *
- * The array is filled with bytes extracted from random integers. + * The array is filled with bytes extracted from random integers generated + * using {@link #nextInt()}. * This implies that the number of random bytes generated may be larger than * the length of the byte array. *
@@ -191,7 +192,8 @@ public abstract class BaseRandomGenerator * Generates random bytes and places them into a user-supplied array. * *- * The array is filled with bytes extracted from random integers. + * The array is filled with bytes extracted from random integers generated + * using {@link #nextInt()}. * This implies that the number of random bytes generated may be larger than * the length of the byte array. *
@@ -222,7 +224,8 @@ public abstract class BaseRandomGenerator * Generates random bytes and places them into a user-supplied array. * *- * The array is filled with bytes extracted from random integers. + * The array is filled with bytes extracted from random integers generated + * using {@link #nextInt()}. * This implies that the number of random bytes generated may be larger than * the length of the byte array. *