You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/11/11 01:40:51 UTC

[groovy] branch GROOVY_4_0_X updated: typofix (closes #1820)

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

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


The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
     new c90a9b66e2 typofix (closes #1820)
c90a9b66e2 is described below

commit c90a9b66e2853ce2b9c0df6524741ae92a441630
Author: Dmitry <de...@gmail.com>
AuthorDate: Sat Nov 5 00:41:08 2022 +0300

    typofix (closes #1820)
---
 src/spec/doc/core-operators.adoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/spec/doc/core-operators.adoc b/src/spec/doc/core-operators.adoc
index 7c3718864a..949e92477d 100644
--- a/src/spec/doc/core-operators.adoc
+++ b/src/spec/doc/core-operators.adoc
@@ -890,8 +890,8 @@ The table below lists all groovy operators in order of precedence.
 | 3 | `++` {nbsp} `--` {nbsp} `+` {nbsp} `-` | pre inc/decrement, unary plus, unary minus
 | 4 | `*` {nbsp} `/` {nbsp} `%` | multiply, div, remainder
 | 5 | `+` {nbsp} `-` | addition, subtraction
-| 6 | `\<\<` {nbsp} `>>` {nbsp} `>>>` {nbsp} `..` {nbsp} `..\<` | left/right (unsigned) shift, inclusive/exclusive range
-| 7 | `\<` {nbsp} `\<=` {nbsp} `>` {nbsp} `>=` {nbsp} `in` &0#160; `!in` {nbsp} `instanceof` {nbsp} `!instanceof` {nbsp} `as` | less/greater than/or equal, in, not in, instanceof, not instanceof, type coercion
+| 6 | `<<` {nbsp} `>>` {nbsp} `>>>` {nbsp} `..` {nbsp} `..<` {nbsp} `<..<` {nbsp} `<..` | left/right (unsigned) shift, inclusive/exclusive ranges
+| 7 | `<` {nbsp} `\<=` {nbsp} `>` {nbsp} `>=` {nbsp} `in` {nbsp} `!in` {nbsp} `instanceof` {nbsp} `!instanceof` {nbsp} `as` | less/greater than/or equal, in, not in, instanceof, not instanceof, type coercion
 | 8 | `==` {nbsp} `!=` {nbsp} `\<\=>` {nbsp} `===` {nbsp} `!==` | equals, not equals, compare to, identical to, not identical to
 |   | `=~` {nbsp} `==~` | regex find, regex match
 | 9 | `&` | binary/bitwise and
@@ -902,7 +902,7 @@ The table below lists all groovy operators in order of precedence.
 | 14 | `? :` | ternary conditional
 |    | `?:` | elvis operator
 | 15 | `=` {nbsp} `\**=` {nbsp} `*=` {nbsp} `/=` {nbsp} `%=` {nbsp} `+=` {nbsp} `-=` {nbsp} +
-`\<\<=` {nbsp} `>>=` {nbsp} `>>>=` {nbsp} `&=` {nbsp} `^=` {nbsp} `\|=` {nbsp} {nbsp} `?=` | various assignments
+`<\<=` {nbsp} `>>=` {nbsp} `>>>=` {nbsp} `&=` {nbsp} `^=` {nbsp} `\|=` {nbsp} {nbsp} `?=` | various assignments
 |======================
 
 [[Operator-Overloading]]