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 2022/05/17 10:07:26 UTC

[commons-rng] branch master updated: Javadoc

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 be32e109 Javadoc
be32e109 is described below

commit be32e10988701d6e21c9bdc4d00873d9d18ab252
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Tue May 17 11:07:13 2022 +0100

    Javadoc
---
 .../main/java/org/apache/commons/rng/UniformRandomProvider.java    | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/commons-rng-client-api/src/main/java/org/apache/commons/rng/UniformRandomProvider.java b/commons-rng-client-api/src/main/java/org/apache/commons/rng/UniformRandomProvider.java
index 1c485648..f2f5c314 100644
--- a/commons-rng-client-api/src/main/java/org/apache/commons/rng/UniformRandomProvider.java
+++ b/commons-rng-client-api/src/main/java/org/apache/commons/rng/UniformRandomProvider.java
@@ -262,7 +262,7 @@ public interface UniformRandomProvider {
      * values.
      *
      * @param streamSize Number of values to generate.
-     * @return a stream of random {@code int} values. the stream is limited to the given
+     * @return a stream of random {@code int} values; the stream is limited to the given
      * {@code streamSize}.
      * @throws IllegalArgumentException if {@code streamSize} is negative.
      * @since 1.5
@@ -325,7 +325,7 @@ public interface UniformRandomProvider {
      * values.
      *
      * @param streamSize Number of values to generate.
-     * @return a stream of random {@code long} values. the stream is limited to the given
+     * @return a stream of random {@code long} values; the stream is limited to the given
      * {@code streamSize}.
      * @throws IllegalArgumentException if {@code streamSize} is negative.
      * @since 1.5
@@ -389,7 +389,8 @@ public interface UniformRandomProvider {
      * values between 0 (inclusive) and 1 (exclusive).
      *
      * @param streamSize Number of values to generate.
-     * @return a stream of random values between 0 (inclusive) and 1 (exclusive).
+     * @return a stream of random values between 0 (inclusive) and 1 (exclusive);
+     * the stream is limited to the given {@code streamSize}.
      * @throws IllegalArgumentException if {@code streamSize} is negative.
      * @since 1.5
      */