This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git
The following commit(s) were added to refs/heads/master by this push:
new e285d88cfb minor tweak to wording
e285d88cfb is described below
commit e285d88cfb4614a1091ea3c3c0a07e2390a6006a
Author: Paul King <[email protected]>
AuthorDate: Wed Dec 11 16:30:57 2024 +1000
minor tweak to wording
---
src/spec/doc/style-guide.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/spec/doc/style-guide.adoc b/src/spec/doc/style-guide.adoc
index 5e3dc6c049..feacc33b74 100644
--- a/src/spec/doc/style-guide.adoc
+++ b/src/spec/doc/style-guide.adoc
@@ -622,7 +622,7 @@ and the resulting value will be null if something's `null`.
To check your parameters, your return values, and more, you can use the
`assert` statement.
-Contrary to Java's `assert`, ``assert``s don't need to be activated to be
working, so ``assert``s are always checked.
+Contrary to Java's `assert`, Groovy's ``assert``s don't need to be activated
to be working, so an `assert` is always checked.
[source,groovy]
----