Skip to content

Commit 1da69dd

Browse files
committed
Fix broken Javadoc HTML tags
1 parent 2c3fb23 commit 1da69dd

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,20 +215,17 @@ static int lastIndexOf(final CharSequence cs, final CharSequence searchChar, int
215215
/**
216216
* Returns the index within {@code cs} of the last occurrence of the specified character, searching backward starting at the specified index. For values of
217217
* {@code searchChar} in the range from 0 to 0xFFFF (inclusive), the index returned is the largest value <em>k</em> such that:
218-
* </p>
219218
*
220219
* <pre>
221220
* (this.charAt(<em>k</em>) == searchChar) &amp;&amp; (<em>k</em> &lt;= start)
222221
* </pre>
223-
*
224222
* <p>
225223
* is true. For other values of {@code searchChar}, it is the largest value <em>k</em> such that:
226224
* <p>
227225
*
228226
* <pre>
229227
* (this.codePointAt(<em>k</em>) == searchChar) &amp;&amp; (<em>k</em> &lt;= start)
230228
* </pre>
231-
*
232229
* <p>
233230
* is true. In either case, if no such character occurs in {@code cs} at or before position {@code start}, then {@code -1} is returned.
234231
* </p>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private static final class SyncAvoid {
6868
/**
6969
* The undetermined language {@value}.
7070
* <p>
71-
* If a language is empty, or not <em>well-formed</am> (for example "a" or "e2"), {@link Locale#toLanguageTag()} will return {@code "und"} (Undetermined).
71+
* If a language is empty, or not <em>well-formed</em> (for example "a" or "e2"), {@link Locale#toLanguageTag()} will return {@code "und"} (Undetermined).
7272
* </p>
7373
*
7474
* @see Locale#toLanguageTag()

src/main/java/org/apache/commons/lang3/builder/ToStringStyle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ private static final class SimpleToStringStyle extends ToStringStyle {
483483
}
484484

485485
/**
486-
* Ensure <code>Singleton</ode> after serialization.
486+
* Ensure <code>Singleton</code> after serialization.
487487
*
488488
* @return the singleton
489489
*/

0 commit comments

Comments
 (0)