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

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

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/aec175c0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/aec175c0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/aec175c0

Branch: refs/heads/master
Commit: aec175c052ba19fd65b5849ea9550e01026f7c51
Parents: cdb5c50
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:17:12 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/aec175c0/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.