Skip to content

Commit dd6aea6

Browse files
committed
Javadoc
1 parent b40313b commit dd6aea6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/apache/commons/lang3/stream/Streams.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ public static <E> Stream<E> of(final Enumeration<E> enumeration) {
689689
}
690690

691691
/**
692-
* Creates a stream on the given Iterable.
692+
* Creates a sequential stream on the given Iterable.
693693
*
694694
* @param <E> the type of elements in the Iterable.
695695
* @param iterable the Iterable to stream or null.
@@ -701,7 +701,7 @@ public static <E> Stream<E> of(final Iterable<E> iterable) {
701701
}
702702

703703
/**
704-
* Creates a stream on the given Iterator.
704+
* Creates a sequential stream on the given Iterator.
705705
*
706706
* @param <E> the type of elements in the Iterator.
707707
* @param iterator the Iterator to stream or null.

0 commit comments

Comments
 (0)