aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/apache/commons/lang3/CharUtils.java
diff options
context:
space:
mode:
authorBruno P. Kinoshita <kinow@apache.org>2017-10-22 01:12:41 +1300
committerBruno P. Kinoshita <kinow@apache.org>2017-10-22 01:12:41 +1300
commitbe3638eb477a8635f647c9a4fefdce7ca2e2408a (patch)
tree10f29a9130f59d69e5429fcee5591f2c2b50990f /src/main/java/org/apache/commons/lang3/CharUtils.java
parent6ea2fc8d38e035bafaa92c7d3b007be38c2e9000 (diff)
downloadapache-commons-lang-be3638eb477a8635f647c9a4fefdce7ca2e2408a.tar.gz
Fix javadoc typos
Diffstat (limited to 'src/main/java/org/apache/commons/lang3/CharUtils.java')
-rw-r--r--src/main/java/org/apache/commons/lang3/CharUtils.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/org/apache/commons/lang3/CharUtils.java b/src/main/java/org/apache/commons/lang3/CharUtils.java
index 219dea2a0..c22896838 100644
--- a/src/main/java/org/apache/commons/lang3/CharUtils.java
+++ b/src/main/java/org/apache/commons/lang3/CharUtils.java
@@ -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