You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2016/08/29 00:58:47 UTC

groovy git commit: typos/comments

Repository: groovy
Updated Branches:
  refs/heads/master 18415d959 -> c6f32044e


typos/comments


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/c6f32044
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/c6f32044
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/c6f32044

Branch: refs/heads/master
Commit: c6f32044e8704073d9353035a07223467440d5af
Parents: 18415d9
Author: paulk <pa...@asert.com.au>
Authored: Mon Aug 29 10:55:20 2016 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Mon Aug 29 10:57:55 2016 +1000

----------------------------------------------------------------------
 src/main/groovy/lang/MetaBeanProperty.java | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/c6f32044/src/main/groovy/lang/MetaBeanProperty.java
----------------------------------------------------------------------
diff --git a/src/main/groovy/lang/MetaBeanProperty.java b/src/main/groovy/lang/MetaBeanProperty.java
index 29a363a..89328af 100644
--- a/src/main/groovy/lang/MetaBeanProperty.java
+++ b/src/main/groovy/lang/MetaBeanProperty.java
@@ -26,9 +26,6 @@ import java.lang.reflect.Modifier;
 
 /**
  * Represents a property on a bean which may have a getter and/or a setter
- *
- * @author <a href="mailto:james@coredevelopers.net">James Strachan</a>
- * @author Pilho Kim
  */
 public class MetaBeanProperty extends MetaProperty {
 
@@ -121,7 +118,7 @@ public class MetaBeanProperty extends MetaProperty {
     /**
      * Gets the visibility modifiers for the property as defined by the getter and setter methods.
      *
-     * @return the visibility modifer of the getter, the setter, or both depending on which exist
+     * @return the visibility modifier of the getter, the setter, or both depending on which exist
      */
     public int getModifiers() {
         MetaMethod getter = getGetter();
@@ -140,7 +137,7 @@ public class MetaBeanProperty extends MetaProperty {
     }
 
     /**
-     * Sets the field of this propery
+     * Sets the field of this property
      *
      * @param field
      */