Repository: groovy Updated Branches: refs/heads/GROOVY_2_5_X ba3e3f4fa -> 7c4b0b41a
tweak doco Project: http://git-wip-us.apache.org/repos/asf/groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/fc03b8d4 Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/fc03b8d4 Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/fc03b8d4 Branch: refs/heads/GROOVY_2_5_X Commit: fc03b8d43e28a1464182751ecd1f21e2adb14047 Parents: ba3e3f4 Author: paulk <[email protected]> Authored: Tue Nov 7 03:41:17 2017 +1000 Committer: paulk <[email protected]> Committed: Tue Nov 7 12:09:55 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/fc03b8d4/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:
