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/11/14 16:38:15 UTC

[groovy] branch master updated: Fix javadoc of `ConditionalInterruptibleASTTransformation`

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 2c48899  Fix javadoc of `ConditionalInterruptibleASTTransformation`
2c48899 is described below

commit 2c488998fba183c5f33b7325acad89bca0c66a4f
Author: Daniel Sun <su...@apache.org>
AuthorDate: Mon Nov 15 00:37:52 2021 +0800

    Fix javadoc of `ConditionalInterruptibleASTTransformation`
---
 .../groovy/transform/ConditionalInterruptibleASTTransformation.groovy  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/groovy/org/codehaus/groovy/transform/ConditionalInterruptibleASTTransformation.groovy b/src/main/groovy/org/codehaus/groovy/transform/ConditionalInterruptibleASTTransformation.groovy
index 187ed93..90fce9c 100644
--- a/src/main/groovy/org/codehaus/groovy/transform/ConditionalInterruptibleASTTransformation.groovy
+++ b/src/main/groovy/org/codehaus/groovy/transform/ConditionalInterruptibleASTTransformation.groovy
@@ -41,7 +41,8 @@ import org.codehaus.groovy.control.CompilePhase
  * check on loops (for, while, do) and first statement of closures. By default, also adds an interrupt check
  * statement on the beginning of method calls.
  *
- * @see groovy.transform.ConditionalInterrupt* @since 1.8.0
+ * @see groovy.transform.ConditionalInterrupt
+ * @since 1.8.0
  */
 @CompileStatic
 @GroovyASTTransformation(phase = CompilePhase.CANONICALIZATION)