This is an automated email from the ASF dual-hosted git repository.
kinow pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-lang.git
The following commit(s) were added to refs/heads/master by this push:
new 469013a4f Fix typos in Javadoc
469013a4f is described below
commit 469013a4f5a5cb666b35d72122690bb7f355c0b5
Author: P. Ottlinger <[email protected]>
AuthorDate: Sun Feb 19 20:34:32 2023 +0100
Fix typos in Javadoc
---
src/main/java/org/apache/commons/lang3/math/NumberUtils.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
index 02a6069b3..4273a41c1 100644
--- a/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
+++ b/src/main/java/org/apache/commons/lang3/math/NumberUtils.java
@@ -1568,7 +1568,7 @@ public class NumberUtils {
}
/**
- * Checks whether the String a valid Java number.
+ * Checks whether the String is a valid Java number.
*
* <p>Valid numbers include hexadecimal marked with the {@code 0x} or
* {@code 0X} qualifier, octal numbers, scientific notation and
@@ -1598,7 +1598,7 @@ public class NumberUtils {
}
/**
- * Checks whether the String a valid Java number.
+ * Checks whether the String is a valid Java number.
*
* <p>Valid numbers include hexadecimal marked with the {@code 0x} or
* {@code 0X} qualifier, octal numbers, scientific notation and
@@ -1658,7 +1658,7 @@ public class NumberUtils {
return true;
}
}
- sz--; // don't want to loop to the last char, check it afterwords
+ sz--; // don't want to loop to the last char, check it afterwards
// for type qualifiers
int i = start;
// loop to the next to last char or to the last char if we need
another digit to