Skip to content

Commit eccdd8e

Browse files
author
Roger Riggs
committedFeb 12, 2020
8238919: (doc) Broken code snippet in the java.util.stream package documentation
Reviewed-by: mchung, naoto
1 parent 93241e5 commit eccdd8e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎src/java.base/share/classes/java/util/stream/package-info.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* <p>The key abstraction introduced in this package is <em>stream</em>. The
4444
* classes {@link java.util.stream.Stream}, {@link java.util.stream.IntStream},
4545
* {@link java.util.stream.LongStream}, and {@link java.util.stream.DoubleStream}
46-
* are streams over objects and the primitive {@code int}, {@code long} and
46+
* are streams over objects and the primitive {@code int}, {@code long}, and
4747
* {@code double} types. Streams differ from collections in several ways:
4848
*
4949
* <ul>
@@ -176,7 +176,7 @@
176176
* do:
177177
*
178178
* <pre>{@code
179-
* int sumOfWeights = widgets.<b>parallelStream()</b>
179+
* int sumOfWeights = widgets.parallelStream()
180180
* .filter(b -> b.getColor() == RED)
181181
* .mapToInt(b -> b.getWeight())
182182
* .sum();
@@ -242,7 +242,7 @@
242242
* String s = sl.collect(joining(" "));
243243
* }</pre>
244244
*
245-
* First a list is created consisting of two strings: "one"; and "two". Then a
245+
* First a list is created consisting of two strings: "one" and "two". Then a
246246
* stream is created from that list. Next the list is modified by adding a third
247247
* string: "three". Finally the elements of the stream are collected and joined
248248
* together. Since the list was modified before the terminal {@code collect}
@@ -344,7 +344,7 @@
344344
* parallelization:
345345
*
346346
* <pre>{@code
347-
* List<String>results =
347+
* List<String> results =
348348
* stream.filter(s -> pattern.matcher(s).matches())
349349
* .collect(Collectors.toList()); // No side-effects!
350350
* }</pre>

0 commit comments

Comments
 (0)
Please sign in to comment.