--- jsr166/src/main/java/util/SplittableRandom.java 2014/12/31 07:54:13 1.26 +++ jsr166/src/main/java/util/SplittableRandom.java 2015/09/13 16:28:14 1.27 @@ -52,15 +52,15 @@ import java.util.stream.StreamSupport; * types and ranges, but similar properties are expected to hold, at * least approximately, for others as well. The period * (length of any series of generated values before it repeats) is at - * least 264. + * least 264. * - *
  • Method {@link #split} constructs and returns a new + *
  • Method {@link #split} constructs and returns a new * SplittableRandom instance that shares no mutable state with the * current instance. However, with very high probability, the * values collectively generated by the two objects have the same * statistical properties as if the same quantity of values were * generated by a single thread using a single {@code - * SplittableRandom} object.
  • + * SplittableRandom} object. * *
  • Instances of SplittableRandom are not thread-safe. * They are designed to be split, not shared, across threads. For @@ -71,7 +71,7 @@ import java.util.stream.StreamSupport; * *
  • This class provides additional methods for generating random * streams, that employ the above techniques when used in {@code - * stream.parallel()} mode.
  • + * stream.parallel()} mode. * * *