This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch GROOVY_4_0_X in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push: new ee2f94faaa fix typo dor -> for ee2f94faaa is described below commit ee2f94faaacd1265e6c36781af4bef118489f8c8 Author: Andrey Bozhko <andyboz...@gmail.com> AuthorDate: Mon Nov 20 19:09:44 2023 -0600 fix typo dor -> for --- src/main/java/groovy/lang/MetaClassImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/groovy/lang/MetaClassImpl.java b/src/main/java/groovy/lang/MetaClassImpl.java index 53a18cdef4..0dfcd5172b 100644 --- a/src/main/java/groovy/lang/MetaClassImpl.java +++ b/src/main/java/groovy/lang/MetaClassImpl.java @@ -191,7 +191,7 @@ public class MetaClassImpl implements MetaClass, MutableMetaClass { /** * Constructor * - * @param theClass The class this is the metaclass dor + * @param theClass The class this is the metaclass for * @param add The methods for this class */ public MetaClassImpl(final Class theClass, final MetaMethod[] add) { @@ -214,7 +214,7 @@ public class MetaClassImpl implements MetaClass, MutableMetaClass { /** * Constructor that sets the methods to null * - * @param theClass The class this is the metaclass dor + * @param theClass The class this is the metaclass for */ public MetaClassImpl(final Class theClass) { this(theClass, null);