Repository: incubator-groovy Updated Branches: refs/heads/GROOVY_2_4_X e4023691f -> 4631ee52c
Documentation: Fix grammar mistake in json-userguide.adoc (closes #62) Project: http://git-wip-us.apache.org/repos/asf/incubator-groovy/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-groovy/commit/4631ee52 Tree: http://git-wip-us.apache.org/repos/asf/incubator-groovy/tree/4631ee52 Diff: http://git-wip-us.apache.org/repos/asf/incubator-groovy/diff/4631ee52 Branch: refs/heads/GROOVY_2_4_X Commit: 4631ee52c60f45aa3472ee393ddc524c8a6e8cc7 Parents: e402369 Author: Aseem Bansal <aseemban...@live.com> Authored: Fri Jul 17 23:42:21 2015 +0530 Committer: pascalschumacher <pascalschumac...@gmx.net> Committed: Sat Jul 18 11:39:37 2015 +0200 ---------------------------------------------------------------------- subprojects/groovy-json/src/spec/doc/json-userguide.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/4631ee52/subprojects/groovy-json/src/spec/doc/json-userguide.adoc ---------------------------------------------------------------------- diff --git a/subprojects/groovy-json/src/spec/doc/json-userguide.adoc b/subprojects/groovy-json/src/spec/doc/json-userguide.adoc index 905d85c..99bdb99 100644 --- a/subprojects/groovy-json/src/spec/doc/json-userguide.adoc +++ b/subprojects/groovy-json/src/spec/doc/json-userguide.adoc @@ -44,7 +44,7 @@ Notice the result is a plain map and can be handled like a normal Groovy object given JSON as defined by the http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf[ECMA-404 JSON Interchange Standard] plus support for JavaScript comments and dates. -In addition to maps `JsonSlurper` supports JSON arrays which are being converted to lists. +In addition to maps `JsonSlurper` supports JSON arrays which are converted to lists. [source,groovy] ----