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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-text.git


The following commit(s) were added to refs/heads/master by this push:
     new ced064f6 Normalize setter Javadoc
ced064f6 is described below

commit ced064f6b6a7861a6a6a802ae1c5c437ce354545
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Tue Oct 31 07:16:14 2023 -0400

    Normalize setter Javadoc
---
 src/main/java/org/apache/commons/text/StrTokenizer.java             | 6 +++---
 src/main/java/org/apache/commons/text/StringTokenizer.java          | 2 +-
 .../java/org/apache/commons/text/jmh/DoubleFormatPerformance.java   | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/main/java/org/apache/commons/text/StrTokenizer.java 
b/src/main/java/org/apache/commons/text/StrTokenizer.java
index 8940f47f..e58b8b1c 100644
--- a/src/main/java/org/apache/commons/text/StrTokenizer.java
+++ b/src/main/java/org/apache/commons/text/StrTokenizer.java
@@ -962,7 +962,7 @@ public class StrTokenizer implements ListIterator<String>, 
Cloneable {
     }
 
     /**
-     * Set the character to ignore.
+     * Sets the character to ignore.
      * <p>
      * This character is ignored when parsing the String, unless it is
      * within a quoted region.
@@ -976,7 +976,7 @@ public class StrTokenizer implements ListIterator<String>, 
Cloneable {
     }
 
     /**
-     * Set the matcher for characters to ignore.
+     * Sets the matcher for characters to ignore.
      * <p>
      * These characters are ignored when parsing the String, unless they are
      * within a quoted region.
@@ -1019,7 +1019,7 @@ public class StrTokenizer implements 
ListIterator<String>, Cloneable {
     }
 
     /**
-     * Set the quote matcher to use.
+     * Sets the quote matcher to use.
      * <p>
      * The quote character is used to wrap data between the tokens.
      * This enables delimiters to be entered as data.
diff --git a/src/main/java/org/apache/commons/text/StringTokenizer.java 
b/src/main/java/org/apache/commons/text/StringTokenizer.java
index 9e355115..33ea73ca 100644
--- a/src/main/java/org/apache/commons/text/StringTokenizer.java
+++ b/src/main/java/org/apache/commons/text/StringTokenizer.java
@@ -1036,7 +1036,7 @@ public class StringTokenizer implements 
ListIterator<String>, Cloneable {
     }
 
     /**
-     * Set the quote matcher to use.
+     * Sets the quote matcher to use.
      * <p>
      * The quote character is used to wrap data between the tokens. This 
enables delimiters to be entered as data.
      * </p>
diff --git 
a/src/test/java/org/apache/commons/text/jmh/DoubleFormatPerformance.java 
b/src/test/java/org/apache/commons/text/jmh/DoubleFormatPerformance.java
index eae94f95..f6d91279 100644
--- a/src/test/java/org/apache/commons/text/jmh/DoubleFormatPerformance.java
+++ b/src/test/java/org/apache/commons/text/jmh/DoubleFormatPerformance.java
@@ -74,7 +74,7 @@ public class DoubleFormatPerformance {
             return input;
         }
 
-        /** Set up the instance for the benchmark. */
+        /** Sets up the instance for the benchmark. */
         @Setup(Level.Iteration)
         public void setup() {
             input = randomDoubleArray(size, minExp, maxExp,

Reply via email to