src/share/classes/java/util/Random.java

Print this page

        

@@ -872,11 +872,11 @@
      * Returns a stream producing the given {@code streamSize} number of
      * pseudorandom {@code double} values, each between zero
      * (inclusive) and one (exclusive).
      *
      * <p>A pseudorandom {@code double} value is generated as if it's the result
-     * of calling the method {@link #nextDouble()}}.
+     * of calling the method {@link #nextDouble()}.
      *
      * @param streamSize the number of values to generate
      * @return a stream of {@code double} values
      * @throws IllegalArgumentException if {@code streamSize} is
      *         less than zero

@@ -895,11 +895,11 @@
      * Returns an effectively unlimited stream of pseudorandom {@code
      * double} values, each between zero (inclusive) and one
      * (exclusive).
      *
      * <p>A pseudorandom {@code double} value is generated as if it's the result
-     * of calling the method {@link #nextDouble()}}.
+     * of calling the method {@link #nextDouble()}.
      *
      * @implNote This method is implemented to be equivalent to {@code
      * doubles(Long.MAX_VALUE)}.
      *
      * @return a stream of pseudorandom {@code double} values