This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch GROOVY_2_5_X
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/GROOVY_2_5_X by this push:
new dc9548fbd1 typo
dc9548fbd1 is described below
commit dc9548fbd19a005653b666bc2ba836c7db3bf199
Author: Paul King <[email protected]>
AuthorDate: Fri Jan 26 12:54:08 2024 +1000
typo
---
src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
b/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
index daf7208ee8..21748a527e 100644
--- a/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
+++ b/src/test/org/codehaus/groovy/runtime/CustomBooleanCoercionTest.groovy
@@ -100,7 +100,7 @@ class CustomBooleanCoercionTest extends GroovyTestCase {
}
}
- void testOverideStringAsBooleanThroughEMC() {
+ void testOverrideStringAsBooleanThroughEMC() {
try {
String.metaClass.asBoolean = { -> true }
@@ -116,7 +116,7 @@ class CustomBooleanCoercionTest extends GroovyTestCase {
}
}
-/** A Predicate classe coercible to a boolea expression */
+/** A Predicate class coercible to a boolean expression */
class Predicate {
boolean value
boolean asBoolean() { value }