This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git

commit dd6aea67130e12b26ebefa32a2ea98fdeafb094d
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jan 19 11:38:33 2025 -0500

    Javadoc
---
 src/main/java/org/apache/commons/lang3/stream/Streams.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/lang3/stream/Streams.java 
b/src/main/java/org/apache/commons/lang3/stream/Streams.java
index 857043dcb..3520a3b38 100644
--- a/src/main/java/org/apache/commons/lang3/stream/Streams.java
+++ b/src/main/java/org/apache/commons/lang3/stream/Streams.java
@@ -689,7 +689,7 @@ public static <E> Stream<E> of(final Enumeration<E> 
enumeration) {
     }
 
     /**
-     * Creates a stream on the given Iterable.
+     * Creates a sequential stream on the given Iterable.
      *
      * @param <E> the type of elements in the Iterable.
      * @param iterable the Iterable to stream or null.
@@ -701,7 +701,7 @@ public static <E> Stream<E> of(final Iterable<E> iterable) {
     }
 
     /**
-     * Creates a stream on the given Iterator.
+     * Creates a sequential stream on the given Iterator.
      *
      * @param <E> the type of elements in the Iterator.
      * @param iterator the Iterator to stream or null.

Reply via email to