Fix javadoc typos

This commit is contained in:
Bruno P. Kinoshita 2017-10-22 01:12:41 +13:00
parent 6ea2fc8d38
commit be3638eb47
8 changed files with 18 additions and 18 deletions

View File

@ -206,7 +206,7 @@ public class CharUtils {
* <p>Converts the character to the Integer it represents, throwing an
* exception if the character is not numeric.</p>
*
* <p>This method coverts the char '1' to the int 1 and so on.</p>
* <p>This method converts the char '1' to the int 1 and so on.</p>
*
* <pre>
* CharUtils.toIntValue('3') = 3
@ -228,7 +228,7 @@ public class CharUtils {
* <p>Converts the character to the Integer it represents, throwing an
* exception if the character is not numeric.</p>
*
* <p>This method coverts the char '1' to the int 1 and so on.</p>
* <p>This method converts the char '1' to the int 1 and so on.</p>
*
* <pre>
* CharUtils.toIntValue('3', -1) = 3
@ -250,7 +250,7 @@ public class CharUtils {
* <p>Converts the character to the Integer it represents, throwing an
* exception if the character is not numeric.</p>
*
* <p>This method coverts the char '1' to the int 1 and so on.</p>
* <p>This method converts the char '1' to the int 1 and so on.</p>
*
* <pre>
* CharUtils.toIntValue('3') = 3
@ -271,7 +271,7 @@ public class CharUtils {
* <p>Converts the character to the Integer it represents, throwing an
* exception if the character is not numeric.</p>
*
* <p>This method coverts the char '1' to the int 1 and so on.</p>
* <p>This method converts the char '1' to the int 1 and so on.</p>
*
* <pre>
* CharUtils.toIntValue(null, -1) = -1

View File

@ -5052,7 +5052,7 @@ public class StringUtils {
* <p>Unlike in the {@link #removePattern(String, String)} method, the {@link Pattern#DOTALL} option
* is NOT automatically added.
* To use the DOTALL option prepend <code>"(?s)"</code> to the regex.
* DOTALL is also know as single-line mode in Perl.</p>
* DOTALL is also known as single-line mode in Perl.</p>
*
* <pre>
* StringUtils.removeAll(null, *) = null
@ -5098,7 +5098,7 @@ public class StringUtils {
*
* <p>The {@link Pattern#DOTALL} option is NOT automatically added.
* To use the DOTALL option prepend <code>"(?s)"</code> to the regex.
* DOTALL is also know as single-line mode in Perl.</p>
* DOTALL is also known as single-line mode in Perl.</p>
*
* <pre>
* StringUtils.removeFirst(null, *) = null
@ -5191,7 +5191,7 @@ public class StringUtils {
/**
* <p>Replaces each substring of the source String that matches the given regular expression with the given
* replacement using the {@link Pattern#DOTALL} option. DOTALL is also know as single-line mode in Perl.</p>
* replacement using the {@link Pattern#DOTALL} option. DOTALL is also known as single-line mode in Perl.</p>
*
* This call is a {@code null} safe equivalent to:
* <ul>
@ -5284,7 +5284,7 @@ public class StringUtils {
* <p>Unlike in the {@link #replacePattern(String, String, String)} method, the {@link Pattern#DOTALL} option
* is NOT automatically added.
* To use the DOTALL option prepend <code>"(?s)"</code> to the regex.
* DOTALL is also know as single-line mode in Perl.</p>
* DOTALL is also known as single-line mode in Perl.</p>
*
* <pre>
* StringUtils.replaceAll(null, *, *) = null
@ -5338,7 +5338,7 @@ public class StringUtils {
*
* <p>The {@link Pattern#DOTALL} option is NOT automatically added.
* To use the DOTALL option prepend <code>"(?s)"</code> to the regex.
* DOTALL is also know as single-line mode in Perl.</p>
* DOTALL is also known as single-line mode in Perl.</p>
*
* <pre>
* StringUtils.replaceFirst(null, *, *) = null
@ -6212,7 +6212,7 @@ public class StringUtils {
* StringUtils.repeat('e', -2) = ""
* </pre>
*
* <p>Note: this method doesn't not support padding with
* <p>Note: this method does not support padding with
* <a href="http://www.unicode.org/glossary/#supplementary_character">Unicode Supplementary Characters</a>
* as they require a pair of {@code char}s to be represented.
* If you are needing to support full I18N of your applications
@ -9218,7 +9218,7 @@ public class StringUtils {
*
* <p>Valid pairs of surrogate code units will be converted into a single supplementary
* code point. Isolated surrogate code units (i.e. a high surrogate not followed by a low surrogate or
* a low surrogate not preceeded by a high surrogate) will be returned as-is.</p>
* a low surrogate not preceded by a high surrogate) will be returned as-is.</p>
*
* <pre>
* StringUtils.toCodePoints(null) = null

View File

@ -36,7 +36,7 @@ import java.util.List;
public class ThreadUtils {
/**
* Return the active thread with the specified id if it belong's to the specified thread group.
* Return the active thread with the specified id if it belongs to the specified thread group.
*
* @param threadId The thread id
* @param threadGroup The thread group
@ -59,7 +59,7 @@ public class ThreadUtils {
}
/**
* Return the active thread with the specified id if it belong's to a thread group with the specified group name.
* Return the active thread with the specified id if it belongs to a thread group with the specified group name.
*
* @param threadId The thread id
* @param threadGroupName The thread group name

View File

@ -23,7 +23,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Use this annotation to exclude a field from being being used by
* Use this annotation to exclude a field from being used by
* the various <code>reflectionEquals</code> methods defined on
* {@link EqualsBuilder}.
*

View File

@ -23,7 +23,7 @@ import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Use this annotation to exclude a field from being being used by
* Use this annotation to exclude a field from being used by
* the various <code>reflectionHashcode</code> methods defined on
* {@link HashCodeBuilder}.
*

View File

@ -225,7 +225,7 @@ public class ToStringBuilder implements Builder<String> {
}
/**
* <p>Constructs a builder for the specified object using the a defined output style.</p>
* <p>Constructs a builder for the specified object using the defined output style.</p>
*
* <p>If the style is <code>null</code>, the default style is used.</p>
*

View File

@ -23,7 +23,7 @@ import java.lang.annotation.Target;
import java.lang.annotation.RetentionPolicy;
/**
* Use this annotation to exclude a field from being being used by
* Use this annotation to exclude a field from being used by
* the {@link ReflectionToStringBuilder}.
*
* @since 3.5

View File

@ -27,7 +27,7 @@ import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.StringUtils;
/**
* Tokenizes a string based based on delimiters (separators)
* Tokenizes a string based on delimiters (separators)
* and supporting quoting and ignored character concepts.
* <p>
* This class can split a String into many smaller strings. It aims