You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2018/02/12 16:02:05 UTC

[text] Javadoc nits.

Repository: commons-text
Updated Branches:
  refs/heads/master 29fe2d49a -> 74b62cb12


Javadoc nits.

Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/74b62cb1
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/74b62cb1
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/74b62cb1

Branch: refs/heads/master
Commit: 74b62cb12a20b7f4240e1bc0ebce1e647285c673
Parents: 29fe2d4
Author: Gary Gregory <ga...@gmail.com>
Authored: Mon Feb 12 09:02:03 2018 -0700
Committer: Gary Gregory <ga...@gmail.com>
Committed: Mon Feb 12 09:02:03 2018 -0700

----------------------------------------------------------------------
 src/main/java/org/apache/commons/text/StrBuilder.java   | 2 +-
 src/main/java/org/apache/commons/text/StrMatcher.java   | 4 ++--
 src/main/java/org/apache/commons/text/StrTokenizer.java | 6 +++---
 3 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/74b62cb1/src/main/java/org/apache/commons/text/StrBuilder.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/StrBuilder.java b/src/main/java/org/apache/commons/text/StrBuilder.java
index 446b2b9..00a6ea1 100644
--- a/src/main/java/org/apache/commons/text/StrBuilder.java
+++ b/src/main/java/org/apache/commons/text/StrBuilder.java
@@ -2611,7 +2611,7 @@ public class StrBuilder implements CharSequence, Appendable, Serializable, Build
      * <p>
      * This method allows the contents of this builder to be tokenized.
      * The tokenizer will be setup by default to tokenize on space, tab,
-     * newline and formfeed (as per StringTokenizer). These values can be
+     * newline and form feed (as per StringTokenizer). These values can be
      * changed on the tokenizer class, before retrieving the tokens.
      * <p>
      * The returned tokenizer is linked to this builder. You may intermix

http://git-wip-us.apache.org/repos/asf/commons-text/blob/74b62cb1/src/main/java/org/apache/commons/text/StrMatcher.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/StrMatcher.java b/src/main/java/org/apache/commons/text/StrMatcher.java
index de7df11..161d9a1 100644
--- a/src/main/java/org/apache/commons/text/StrMatcher.java
+++ b/src/main/java/org/apache/commons/text/StrMatcher.java
@@ -46,7 +46,7 @@ public abstract class StrMatcher {
 
     /**
      * Matches the same characters as StringTokenizer,
-     * namely space, tab, newline, formfeed.
+     * namely space, tab, newline, form feed.
      */
     private static final StrMatcher SPLIT_MATCHER = new CharSetMatcher(" \t\n\r\f".toCharArray());
 
@@ -106,7 +106,7 @@ public abstract class StrMatcher {
 
     /**
      * Matches the same characters as StringTokenizer,
-     * namely space, tab, newline and formfeed.
+     * namely space, tab, newline and form feed.
      *
      * @return the split matcher
      */

http://git-wip-us.apache.org/repos/asf/commons-text/blob/74b62cb1/src/main/java/org/apache/commons/text/StrTokenizer.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/StrTokenizer.java b/src/main/java/org/apache/commons/text/StrTokenizer.java
index b6a026d..c07ce31 100644
--- a/src/main/java/org/apache/commons/text/StrTokenizer.java
+++ b/src/main/java/org/apache/commons/text/StrTokenizer.java
@@ -230,7 +230,7 @@ public class StrTokenizer implements ListIterator<String>, Cloneable {
 
     //-----------------------------------------------------------------------
     /**
-     * Constructs a tokenizer splitting on space, tab, newline and formfeed
+     * Constructs a tokenizer splitting on space, tab, newline and form feed
      * as per StringTokenizer, but with no text to tokenize.
      * <p>
      * This constructor is normally used with {@link #reset(String)}.
@@ -241,7 +241,7 @@ public class StrTokenizer implements ListIterator<String>, Cloneable {
     }
 
     /**
-     * Constructs a tokenizer splitting on space, tab, newline and formfeed
+     * Constructs a tokenizer splitting on space, tab, newline and form feed
      * as per StringTokenizer.
      *
      * @param input  the string which is to be parsed
@@ -315,7 +315,7 @@ public class StrTokenizer implements ListIterator<String>, Cloneable {
     }
 
     /**
-     * Constructs a tokenizer splitting on space, tab, newline and formfeed
+     * Constructs a tokenizer splitting on space, tab, newline and form feed
      * as per StringTokenizer.
      *
      * @param input  the string which is to be parsed, not cloned