You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2022/08/24 07:42:00 UTC

[groovy] branch GROOVY_4_0_X updated: fix typo

This is an automated email from the ASF dual-hosted git repository.

paulk pushed a commit to branch GROOVY_4_0_X
in repository https://gitbox.apache.org/repos/asf/groovy.git


The following commit(s) were added to refs/heads/GROOVY_4_0_X by this push:
     new eb9eb0c4b4 fix typo
eb9eb0c4b4 is described below

commit eb9eb0c4b44a543af0e3cee1df0909abe22cc075
Author: Paul King <pa...@asert.com.au>
AuthorDate: Wed Aug 24 17:41:53 2022 +1000

    fix typo
---
 .../java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java b/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
index 5f6e41adc3..1140190d33 100644
--- a/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
+++ b/subprojects/groovy-datetime/src/main/java/org/apache/groovy/datetime/extensions/DateTimeExtensions.java
@@ -2092,7 +2092,7 @@ public final class DateTimeExtensions {
         return ZoneOffset.ofTotalSeconds(offsetMillis / 1000);
     }
 
-    /* duplicated with DateUtilExtensions.toCalendar() but we don't want modulkes to depend on one another */
+    /* duplicated with DateUtilExtensions.toCalendar() but we don't want modules to depend on one another */
     private static Calendar toCalendar(Date self) {
         Calendar cal = Calendar.getInstance();
         cal.setTime(self);