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-lang.git
commit b77073c2ac343f3c7521c62df4a8ee71f26128ac Author: Gary D. Gregory <[email protected]> AuthorDate: Sun Oct 26 15:16:39 2025 -0400 Javadoc --- src/main/java/org/apache/commons/lang3/StringUtils.java | 2 +- src/main/java/org/apache/commons/lang3/time/FastDateFormat.java | 4 ++-- src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/org/apache/commons/lang3/StringUtils.java b/src/main/java/org/apache/commons/lang3/StringUtils.java index 751896e12..3075c0430 100644 --- a/src/main/java/org/apache/commons/lang3/StringUtils.java +++ b/src/main/java/org/apache/commons/lang3/StringUtils.java @@ -2396,7 +2396,7 @@ distance is O(nm), but a bound of k allows us to reduce it to O(km) time by only d is the distance. One subtlety comes from needing to ignore entries on the border of our stripe - eg. + for example, p[] = |#|#|#|* d[] = *|#|#|#| We must ignore the entry to the left of the leftmost member diff --git a/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java b/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java index e77de589c..2ae5f7c46 100644 --- a/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java +++ b/src/main/java/org/apache/commons/lang3/time/FastDateFormat.java @@ -58,12 +58,12 @@ * </p> * * <p> - * Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent time zones in RFC822 format (eg. {@code +0800} or {@code -1100}). This pattern letter can + * Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent time zones in RFC822 format (for example, {@code +0800} or {@code -1100}). This pattern letter can * be used here (on all JDK versions). * </p> * * <p> - * In addition, the pattern {@code 'ZZ'} has been made to represent ISO 8601 extended format time zones (eg. {@code +08:00} or {@code -11:00}). This introduces + * In addition, the pattern {@code 'ZZ'} has been made to represent ISO 8601 extended format time zones (for example, {@code +08:00} or {@code -11:00}). This introduces * a minor incompatibility with Java 1.4, but at a gain of useful functionality. * </p> * diff --git a/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java b/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java index 89c0d207a..f10b0d1d5 100644 --- a/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java +++ b/src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java @@ -60,11 +60,11 @@ * SimpleDateFormat (except time zones and some year patterns - see below).</p> * * <p>Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent - * time zones in RFC822 format (eg. {@code +0800} or {@code -1100}). + * time zones in RFC822 format (for example, {@code +0800} or {@code -1100}). * This pattern letter can be used here (on all JDK versions).</p> * * <p>In addition, the pattern {@code 'ZZ'} has been made to represent - * ISO 8601 extended format time zones (eg. {@code +08:00} or {@code -11:00}). + * ISO 8601 extended format time zones (for example, {@code +08:00} or {@code -11:00}). * This introduces a minor incompatibility with Java 1.4, but at a gain of * useful functionality.</p> *
