tweak doco
Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/d5fb637e Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/d5fb637e Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/d5fb637e Branch: refs/heads/master Commit: d5fb637e270ebbf3d3e9cfffdb324d7faf4c8253 Parents: e0b473c Author: paulk <[email protected]> Authored: Tue Nov 7 03:41:17 2017 +1000 Committer: paulk <[email protected]> Committed: Tue Nov 7 12:08:19 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/d5fb637e/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:
