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:17 UTC

[1/2] incubator-groovy git commit: Remove a backslash that was out of place

Repository: incubator-groovy
Updated Branches:
  refs/heads/GROOVY_2_4_X f19e846a1 -> 04a959047


Remove a backslash that was out of place

Under the 'Quoted identifiers' section: person.\'name' changed to person.'name'


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

Branch: refs/heads/GROOVY_2_4_X
Commit: 04a95904701ff454df6a2293eb1a886ec93502c9
Parents: 0584a24
Author: Edinson Padrón Urdaneta <ed...@gmail.com>
Authored: Fri May 29 23:18:11 2015 -0430
Committer: Paul King <pa...@asert.com.au>
Committed: Sat May 30 20:18:43 2015 +1000

----------------------------------------------------------------------
 src/spec/doc/core-syntax.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/04a95904/src/spec/doc/core-syntax.adoc
----------------------------------------------------------------------
diff --git a/src/spec/doc/core-syntax.adoc b/src/spec/doc/core-syntax.adoc
index d577d71..d222f62 100644
--- a/src/spec/doc/core-syntax.adoc
+++ b/src/spec/doc/core-syntax.adoc
@@ -160,7 +160,7 @@ include::{projectdir}/src/spec/test/SyntaxTest.groovy[tags=keywords_valid_id_aft
 === Quoted identifiers
 
 Quoted identifiers appear after the dot of a dotted expression.
-For instance, the `name` part of the `person.name` expression can be quoted with `person."name"` or `person.\'name'`.
+For instance, the `name` part of the `person.name` expression can be quoted with `person."name"` or `person.'name'`.
 This is particularly interesting when certain identifiers contain illegal characters that are forbidden by the Java Language Specification,
 but which are allowed by Groovy when quoted. For example, characters like a dash, a space, an exclamation mark, etc.
 


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

Posted by pa...@apache.org.
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
+}