You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2021/06/23 15:11:42 UTC

[groovy] branch master updated: Update GINQ user guide

This is an automated email from the ASF dual-hosted git repository.

sunlan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/master by this push:
     new eec31fa  Update GINQ user guide
eec31fa is described below

commit eec31fa7bd43643565beee6ce94fd6808627748a
Author: Daniel Sun <su...@apache.org>
AuthorDate: Wed Jun 23 23:11:29 2021 +0800

    Update GINQ user guide
---
 subprojects/groovy-ginq/src/spec/doc/ginq-userguide.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-ginq/src/spec/doc/ginq-userguide.adoc b/subprojects/groovy-ginq/src/spec/doc/ginq-userguide.adoc
index 1f00e54..51dedae 100644
--- a/subprojects/groovy-ginq/src/spec/doc/ginq-userguide.adoc
+++ b/subprojects/groovy-ginq/src/spec/doc/ginq-userguide.adoc
@@ -925,7 +925,7 @@ Parallel querying is especially efficient when querying big data sources. It is
 include::../test/org/apache/groovy/ginq/GinqTest.groovy[tags=ginq_tips_08,indent=0]
 ----
 
-As parallel querying will use a shared thread pool, the following code should be executed to release resources after all GINQ statements execution are completed, otherwise JVM will not exit. The code will wait util all tasks of theads are completed.
+As parallel querying will use a shared thread pool, the following code can release resources after all GINQ statements execution are completed, and it will wait util all tasks of threads are completed.
 [source, groovy]
 ----
 include::../test/org/apache/groovy/ginq/GinqTest.groovy[tags=ginq_tips_09,indent=0]