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 2020/10/11 09:11:15 UTC

[groovy] 02/03: GROOVY-8258: tweak comment

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

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

commit d31efd0d24d76428d59aede8d4609a2708533cf4
Author: Daniel Sun <su...@apache.org>
AuthorDate: Sun Oct 11 16:11:07 2020 +0800

    GROOVY-8258: tweak comment
---
 .../org/apache/groovy/linq/provider/collection/GinqAstWalker.groovy   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/subprojects/groovy-linq/src/main/groovy/org/apache/groovy/linq/provider/collection/GinqAstWalker.groovy b/subprojects/groovy-linq/src/main/groovy/org/apache/groovy/linq/provider/collection/GinqAstWalker.groovy
index 98315a8..a56d505 100644
--- a/subprojects/groovy-linq/src/main/groovy/org/apache/groovy/linq/provider/collection/GinqAstWalker.groovy
+++ b/subprojects/groovy-linq/src/main/groovy/org/apache/groovy/linq/provider/collection/GinqAstWalker.groovy
@@ -358,13 +358,13 @@ class GinqAstWalker implements GinqVisitor<Object>, SyntaxErrorReportable {
                     }
                 } else if (isJoin) {
                     /*
-                     * `n1`(from node) join `n2` join `n3`  will construct a join tree:
+                     * `n1`(`from` node) join `n2` join `n3`  will construct a join tree:
                      *
                      *  __t (join node)
                      *    |__ v2 (n3)
                      *    |__ v1 (join node)
                      *         |__ v2 (n2)
-                     *         |__ v1 (n1) (from node)
+                     *         |__ v1 (n1) (`from` node)
                      *
                      * Note: `__t` is a tuple with 2 elements
                      * so  `n3`'s access path is `__t.v2`