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 7dff392570 typo
7dff392570 is described below
commit 7dff39257005b6701861d80a28fe358235ff53f9
Author: Paul King <[email protected]>
AuthorDate: Wed Apr 16 08:19:28 2025 +1000
typo
---
src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
b/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
index fa538aa799..52da53afcf 100644
--- a/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
+++ b/src/test/groovy/transform/stc/STCExtensionMethodsTest.groovy
@@ -34,7 +34,7 @@ class STCExtensionMethodsTest extends
StaticTypeCheckingTestCase {
void testNonStaticExtensionMethod() {
assertScript '''
def str = 'This is a string'
- // reverseToUpperCase is a usnit test extension method
+ // reverseToUpperCase is a unit test extension method
assert str.reverseToUpperCase() == str.toUpperCase().reverse()
'''
}