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

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


The following commit(s) were added to refs/heads/master by this push:
     new eb8448f0f7 Update JsonTokenType.java
eb8448f0f7 is described below

commit eb8448f0f74b5e404aabe1428d99151f75954018
Author: Florian Mt <florian.monf...@proton.me>
AuthorDate: Wed May 29 20:24:33 2024 +0200

    Update JsonTokenType.java
    
    Typo on "openning" -> "opening"
---
 subprojects/groovy-json/src/main/java/groovy/json/JsonTokenType.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/subprojects/groovy-json/src/main/java/groovy/json/JsonTokenType.java 
b/subprojects/groovy-json/src/main/java/groovy/json/JsonTokenType.java
index b00b5c9cfc..f1734ba1a1 100644
--- a/subprojects/groovy-json/src/main/java/groovy/json/JsonTokenType.java
+++ b/subprojects/groovy-json/src/main/java/groovy/json/JsonTokenType.java
@@ -31,9 +31,9 @@ import java.util.regex.Pattern;
  * @since 1.8.0
  */
 public enum JsonTokenType {
-    OPEN_CURLY      ( "an openning curly brace '{'",        "{"         ),
+    OPEN_CURLY      ( "an opening curly brace '{'",        "{"         ),
     CLOSE_CURLY     ( "a closing curly brace '}'",          "}"         ),
-    OPEN_BRACKET    ( "an openning square bracket '['",     "["         ),
+    OPEN_BRACKET    ( "an opening square bracket '['",     "["         ),
     CLOSE_BRACKET   ( "a closing square bracket ']'",       "]"         ),
     COLON           ( "a colon ':'",                        ":"         ),
     COMMA           ( "a comma ','",                        ","         ),

Reply via email to