You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2021/06/13 07:23:22 UTC

[groovy] branch master updated: Tweak javadoc

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

sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new 07907ff  Tweak javadoc
07907ff is described below

commit 07907ff1c1d4ed1dbcbbff1da66191ad9beedadd
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Jun 13 15:17:20 2021 +0800

    Tweak javadoc
---
 .../java/org/codehaus/groovy/runtime/StreamGroovyMethods.java     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/codehaus/groovy/runtime/StreamGroovyMethods.java b/src/main/java/org/codehaus/groovy/runtime/StreamGroovyMethods.java
index c4054bc..6304b86 100644
--- a/src/main/java/org/codehaus/groovy/runtime/StreamGroovyMethods.java
+++ b/src/main/java/org/codehaus/groovy/runtime/StreamGroovyMethods.java
@@ -28,8 +28,8 @@ public class StreamGroovyMethods {
     }
 
     /**
-     * TODO
-     *
+     * Returns a lazily concatenated stream whose elements are all the elements of this stream followed by all the elements of the {@link Collection} object.
+     * 
      * <pre class="groovyTestCase">
      * import java.util.stream.Stream
      * assert (Stream.of(1) + [2]).toList() == [1,2]
@@ -43,7 +43,7 @@ public class StreamGroovyMethods {
     }
 
     /**
-     * TODO
+     * Returns a lazily concatenated stream whose elements are all the elements of this stream followed by all the elements of the {@link Iterable} object.
      *
      * <pre class="groovyTestCase">
      * import java.util.stream.Stream
@@ -58,7 +58,7 @@ public class StreamGroovyMethods {
     }
 
     /**
-     * TODO
+     * Returns a lazily concatenated stream whose elements are all the elements of this stream followed by all the elements of the second stream.
      *
      * <pre class="groovyTestCase">
      * import java.util.stream.Stream