tweak doco
Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/169ff8f3 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/169ff8f3 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/169ff8f3 Branch: refs/heads/GROOVY_2_4_X Commit: 169ff8f3e14aa85d295f75c66627391b564d32da Parents: ed69389 Author: paulk <[email protected]> Authored: Tue Nov 7 03:41:17 2017 +1000 Committer: paulk <[email protected]> Committed: Tue Nov 7 12:10:24 2017 +1000 ---------------------------------------------------------------------- src/spec/doc/core-semantics.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/groovy/blob/169ff8f3/src/spec/doc/core-semantics.adoc ---------------------------------------------------------------------- diff --git a/src/spec/doc/core-semantics.adoc b/src/spec/doc/core-semantics.adoc index c2dd9a4..232fffb 100644 --- a/src/spec/doc/core-semantics.adoc +++ b/src/spec/doc/core-semantics.adoc @@ -1414,7 +1414,7 @@ Groovy provides a syntax for various type literals. There are three native colle * lists, using the `[]` literal * maps, using the `[:]` literal -* ranges, using the `(..,..)` literal +* ranges, using `from..to` (inclusive) and `from..<to` (exclusive) The inferred type of a literal depends on the elements of the literal, as illustrated in the following table:
