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
The following commit(s) were added to refs/heads/master by this push:
new ec66903b6 Javadoc: Fix double "to"
ec66903b6 is described below
commit ec66903b6519dfc776147988932712172568a5e0
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Dec 26 16:32:38 2025 -0500
Javadoc: Fix double "to"
---
src/main/java/org/apache/commons/lang3/time/DateUtils.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/apache/commons/lang3/time/DateUtils.java
b/src/main/java/org/apache/commons/lang3/time/DateUtils.java
index a5f651764..df4553dc0 100644
--- a/src/main/java/org/apache/commons/lang3/time/DateUtils.java
+++ b/src/main/java/org/apache/commons/lang3/time/DateUtils.java
@@ -1644,7 +1644,7 @@ public static LocalDateTime toLocalDateTime(final Date
date) {
* Converts a {@link Date} to a {@link LocalDateTime}.
*
* @param date the Date to convert to a LocalDateTime, not null.
- * @param timeZone the time zone, null maps to to the default time zone.
+ * @param timeZone the time zone, null maps to the default time zone.
* @return a new LocalDateTime.
* @since 3.19.0
*/
@@ -1667,7 +1667,7 @@ public static OffsetDateTime toOffsetDateTime(final Date
date) {
* Converts a {@link Date} to a {@link OffsetDateTime}.
*
* @param date the Date to convert to a OffsetDateTime, not null.
- * @param timeZone the time zone, null maps to to the default time zone.
+ * @param timeZone the time zone, null maps to the default time zone.
* @return a new OffsetDateTime.
* @since 3.19.0
*/
@@ -1690,7 +1690,7 @@ public static ZonedDateTime toZonedDateTime(final Date
date) {
* Converts a {@link Date} to a {@link ZonedDateTime}.
*
* @param date the Date to convert to a ZonedDateTime, not null.
- * @param timeZone the time zone, null maps to to the default time zone.
+ * @param timeZone the time zone, null maps to the default time zone.
* @return a new ZonedDateTime.
* @since 3.19.0
*/