We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b40313b commit dd6aea6Copy full SHA for dd6aea6
src/main/java/org/apache/commons/lang3/stream/Streams.java
@@ -689,7 +689,7 @@ public static <E> Stream<E> of(final Enumeration<E> enumeration) {
689
}
690
691
/**
692
- * Creates a stream on the given Iterable.
+ * Creates a sequential stream on the given Iterable.
693
*
694
* @param <E> the type of elements in the Iterable.
695
* @param iterable the Iterable to stream or null.
@@ -701,7 +701,7 @@ public static <E> Stream<E> of(final Iterable<E> iterable) {
701
702
703
704
- * Creates a stream on the given Iterator.
+ * Creates a sequential stream on the given Iterator.
705
706
* @param <E> the type of elements in the Iterator.
707
* @param iterator the Iterator to stream or null.
0 commit comments