tweak doco
Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/d474358a Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/d474358a Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/d474358a Branch: refs/heads/GROOVY_2_6_X Commit: d474358a5ae661edb030d50a5474b455b462ac4e Parents: 2359b53 Author: paulk <[email protected]> Authored: Tue Nov 7 03:41:17 2017 +1000 Committer: paulk <[email protected]> Committed: Tue Nov 7 12:09: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/d474358a/src/spec/doc/core-semantics.adoc ---------------------------------------------------------------------- diff --git a/src/spec/doc/core-semantics.adoc b/src/spec/doc/core-semantics.adoc index 68c9629..37f5b42 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:
