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

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


The following commit(s) were added to refs/heads/GROOVY_3_0_X by this push:
     new 220fbb2  GROOVY-9442: GEP: Support for the new JDK14 string escape 
sequence (\s for single space) (update doco)
220fbb2 is described below

commit 220fbb24443635d46c6c6b927df25b93dfefff7b
Author: Paul King <[email protected]>
AuthorDate: Fri Mar 20 20:54:35 2020 +1000

    GROOVY-9442: GEP: Support for the new JDK14 string escape sequence (\s for 
single space) (update doco)
---
 src/spec/doc/core-syntax.adoc | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/src/spec/doc/core-syntax.adoc b/src/spec/doc/core-syntax.adoc
index 2742574..c1a67c8 100644
--- a/src/spec/doc/core-syntax.adoc
+++ b/src/spec/doc/core-syntax.adoc
@@ -321,20 +321,23 @@ Some special characters also use the backslash as escape 
character:
 |Escape sequence
 |Character
 
-|\t
-|tabulation
-
 |\b
 |backspace
 
+|\f
+|formfeed
+
 |\n
 |newline
 
 |\r
 |carriage return
 
-|\f
-|formfeed
+|\s
+|single space
+
+|\t
+|tabulation
 
 |\\
 |backslash

Reply via email to