Skip to content

Commit

Permalink
Javadoc: Sentences end in a period.
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 22, 2021
1 parent 0b135af commit 6b03fe5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/apache/commons/lang3/ObjectUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -803,7 +803,7 @@ public static int hashCodeMulti(final Object... objects) {
*
* @param appendable the appendable to append to
* @param object the object to create a toString for
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
* @since 3.2
*/
public static void identityToString(final Appendable appendable, final Object object) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ public void getChars(final int startIndex, final int endIndex, final char[] dest
*
* @param readable object to read from
* @return the number of characters read
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
*
* @since 3.4
* @see #appendTo(Appendable)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ private interface Rule {
*
* @param buf the output buffer
* @param calendar calendar to be appended
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
*/
void appendTo(Appendable buf, Calendar calendar) throws IOException;
}
Expand All @@ -792,7 +792,7 @@ private interface NumberRule extends Rule {
*
* @param buffer the output buffer
* @param value the value to be appended
* @throws IOException if an I/O error occurs
* @throws IOException if an I/O error occurs.
*/
void appendTo(Appendable buffer, int value) throws IOException;
}
Expand Down

0 comments on commit 6b03fe5

Please sign in to comment.