You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by em...@apache.org on 2022/10/11 18:56:10 UTC

[groovy] branch master updated: fix typos

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

emilles 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 a42ddaf4b7 fix typos
a42ddaf4b7 is described below

commit a42ddaf4b730e3e8c2f7069f25f33e8fb7609f4d
Author: Eric Milles <er...@thomsonreuters.com>
AuthorDate: Tue Oct 11 13:56:00 2022 -0500

    fix typos
---
 .../transform/stc/GroovyTypeCheckingExtensionSupport.java    | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/main/java/org/codehaus/groovy/transform/stc/GroovyTypeCheckingExtensionSupport.java b/src/main/java/org/codehaus/groovy/transform/stc/GroovyTypeCheckingExtensionSupport.java
index cc129cf573..713cdefb86 100644
--- a/src/main/java/org/codehaus/groovy/transform/stc/GroovyTypeCheckingExtensionSupport.java
+++ b/src/main/java/org/codehaus/groovy/transform/stc/GroovyTypeCheckingExtensionSupport.java
@@ -420,15 +420,15 @@ public class GroovyTypeCheckingExtensionSupport extends AbstractTypeCheckingExte
      * <dl>
      *   <dt>setup</dt>                          <dd>Registers closure that runs after the type checker finishes initialization</dd>
      *   <dt>finish</dt>                         <dd>Registers closure that runs after the type checker completes type checking</dd>
-     *   <dt>beforeVisitClass</dt>               <dd>Registers closure that runs by the type checker before type checking a class</dd>
-     *   <dt>afterVisitClass</dt>                <dd>Registers closure that runs by the type checker after having finished the visit of a type checked class</dd>
-     *   <dt>beforeVisitMethod</dt>              <dd>Registers closure that runs by the type checker before type checking a method body</dd>
-     *   <dt>afterVisitMethod</dt>               <dd>Registers closure that runs by the type checker after type checking a method body</dd>
+     *   <dt>beforeVisitClass</dt>               <dd>Registers closure that runs before type checking a class</dd>
+     *   <dt>afterVisitClass</dt>                <dd>Registers closure that runs after having finished the visit of a type checked class</dd>
+     *   <dt>beforeVisitMethod</dt>              <dd>Registers closure that runs before type checking a method body</dd>
+     *   <dt>afterVisitMethod</dt>               <dd>Registers closure that runs after type checking a method body</dd>
      *   <dt>beforeMethodCall</dt>               <dd>Registers closure that runs before the type checker starts type checking a method call</dd>
      *   <dt>afterMethodCall</dt>                <dd>Registers closure that runs once the type checker has finished type checking a method call</dd>
-     *   <dt>methodNotFound</dt>                 <dd>Registers closure that runs by the type checker when it fails to find an appropriate method for a method call</dd>
+     *   <dt>methodNotFound</dt>                 <dd>Registers closure that runs when it fails to find an appropriate method for a method call</dd>
      *   <dt>ambiguousMethods</dt>               <dd>Registers closure that runs when the type checker cannot choose between several candidate methods</dd>
-     *   <dt>onMethodSelection</dt>              <dd>Registers closure that runs by the type checker when it finds a method appropriate for a method call</dd>
+     *   <dt>onMethodSelection</dt>              <dd>Registers closure that runs when it finds a method appropriate for a method call</dd>
      *   <dt>unresolvedVariable</dt>             <dd>Registers closure that runs when the type checker finds an unresolved variable</dd>
      *   <dt>unresolvedProperty</dt>             <dd>Registers closure that runs when the type checker cannot find a property on the receiver</dd>
      *   <dt>unresolvedAttribute</dt>            <dd>Registers closure that runs when the type checker cannot find an attribute on the receiver</dd>