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/03/07 20:24:00 UTC

groovy git commit: StringGroovyMethods: minimal javadoc corrections

Repository: groovy
Updated Branches:
  refs/heads/master f7183fd60 -> 4afe3f35b


StringGroovyMethods: minimal javadoc corrections


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

Branch: refs/heads/master
Commit: 4afe3f35b3b32dbe55353f08aab1a222849b01be
Parents: f7183fd
Author: pascalschumacher <pa...@gmx.net>
Authored: Mon Mar 7 20:23:43 2016 +0100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Mon Mar 7 20:23:43 2016 +0100

----------------------------------------------------------------------
 src/main/org/codehaus/groovy/runtime/StringGroovyMethods.java | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/4afe3f35/src/main/org/codehaus/groovy/runtime/StringGroovyMethods.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/runtime/StringGroovyMethods.java b/src/main/org/codehaus/groovy/runtime/StringGroovyMethods.java
index da072c3..c469584 100644
--- a/src/main/org/codehaus/groovy/runtime/StringGroovyMethods.java
+++ b/src/main/org/codehaus/groovy/runtime/StringGroovyMethods.java
@@ -58,9 +58,8 @@ import static org.codehaus.groovy.runtime.DefaultGroovyMethods.join;
 /**
  * This class defines new groovy methods which appear on String-related JDK
  * classes (String, CharSequence, Matcher) inside the Groovy environment.
- * Static methods are used with the
- * first parameter being the destination class,
- * e.g.. <code>public static String reverse(String self)</code>
+ * Static methods are used with the first parameter being the destination class,
+ * e.g. <code>public static String reverse(String self)</code>
  * provides a <code>reverse()</code> method for <code>String</code>.
  * <p>
  * NOTE: While this class contains many 'public' static methods, it is
@@ -3685,7 +3684,7 @@ public class StringGroovyMethods extends DefaultGroovyMethodsSupport {
     }
 
     /**
-     * Converts the given CharSequence into a Set of unique String of one character.
+     * Converts the given CharSequence into a Set of unique Strings of one character.
      *
      * @param self a CharSequence
      * @return a Set of unique characters (each a 1-character String)