Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariel Shkedi committed Aug 21, 2024
1 parent f28e526 commit 04299c5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,12 +224,12 @@ public ZonedDateTime toZonedDateTime() {
return toZonedDateTime(calendar);
}

* Converts this instance to a {@link LocalDate}.
/** Converts this instance to a {@link LocalDate}.
*
* @return a LocalDate
* @since 3.17.0
*/
public LocalDate toLocalDate() {
return LocalDate.of(getYear(), getMonth()+1, getDayOfMonth());
return LocalDate.of(getYear(), getMonth() + 1, getDayOfMonth());
}
}

0 comments on commit 04299c5

Please sign in to comment.