You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by pa...@apache.org on 2015/05/30 12:19:18 UTC

[2/2] incubator-groovy git commit: Fix the GroovyDoc comment in testGroovyDocComment

Fix the GroovyDoc comment in testGroovyDocComment

The line "@return ag reeting message" was changed by "@return a greeting message" in the GroovyDoc comment for the Person class.


Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/0584a249
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/0584a249
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/0584a249

Branch: refs/heads/GROOVY_2_4_X
Commit: 0584a249c5d30a724ad0d3051083843536f889b3
Parents: f19e846
Author: Edinson PadrĂ³n Urdaneta <ed...@gmail.com>
Authored: Fri May 29 23:12:44 2015 -0430
Committer: Paul King <pa...@asert.com.au>
Committed: Sat May 30 20:18:43 2015 +1000

----------------------------------------------------------------------
 src/spec/test/SyntaxTest.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/0584a249/src/spec/test/SyntaxTest.groovy
----------------------------------------------------------------------
diff --git a/src/spec/test/SyntaxTest.groovy b/src/spec/test/SyntaxTest.groovy
index 8a9c82e..e68f018 100644
--- a/src/spec/test/SyntaxTest.groovy
+++ b/src/spec/test/SyntaxTest.groovy
@@ -240,7 +240,7 @@ class SyntaxTest extends CompilableTestSupport {
                  * Creates a greeting method for a certain person.
                  *
                  * @param otherPerson the person to greet
-                 * @return ag reeting message
+                 * @return a greeting message
                  */
                 String greet(String otherPerson) {
                    "Hello ${otherPerson}"
@@ -777,4 +777,4 @@ class SyntaxTest extends CompilableTestSupport {
 
 
     }
-}
\ No newline at end of file
+}