Skip to content

Commit b77073c

Browse files
committed
Javadoc
1 parent 8646304 commit b77073c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/main/java/org/apache/commons/lang3/StringUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2396,7 +2396,7 @@ distance is O(nm), but a bound of k allows us to reduce it to O(km) time by only
23962396
d is the distance.
23972397
23982398
One subtlety comes from needing to ignore entries on the border of our stripe
2399-
eg.
2399+
for example,
24002400
p[] = |#|#|#|*
24012401
d[] = *|#|#|#|
24022402
We must ignore the entry to the left of the leftmost member

src/main/java/org/apache/commons/lang3/time/FastDateFormat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@
5858
* </p>
5959
*
6060
* <p>
61-
* 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
61+
* 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
6262
* be used here (on all JDK versions).
6363
* </p>
6464
*
6565
* <p>
66-
* 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
66+
* 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
6767
* a minor incompatibility with Java 1.4, but at a gain of useful functionality.
6868
* </p>
6969
*

src/main/java/org/apache/commons/lang3/time/FastDatePrinter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@
6060
* SimpleDateFormat (except time zones and some year patterns - see below).</p>
6161
*
6262
* <p>Java 1.4 introduced a new pattern letter, {@code 'Z'}, to represent
63-
* time zones in RFC822 format (eg. {@code +0800} or {@code -1100}).
63+
* time zones in RFC822 format (for example, {@code +0800} or {@code -1100}).
6464
* This pattern letter can be used here (on all JDK versions).</p>
6565
*
6666
* <p>In addition, the pattern {@code 'ZZ'} has been made to represent
67-
* ISO 8601 extended format time zones (eg. {@code +08:00} or {@code -11:00}).
67+
* ISO 8601 extended format time zones (for example, {@code +08:00} or {@code -11:00}).
6868
* This introduces a minor incompatibility with Java 1.4, but at a gain of
6969
* useful functionality.</p>
7070
*

0 commit comments

Comments
 (0)