This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/groovy-website.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 3721342 typo
3721342 is described below
commit 372134255acf6dfa3f08492b40e80ef90ddd169f
Author: Paul King <[email protected]>
AuthorDate: Sat Dec 9 17:00:39 2023 +1000
typo
---
site/src/site/blog/groovy-gatherers.adoc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/site/src/site/blog/groovy-gatherers.adoc
b/site/src/site/blog/groovy-gatherers.adoc
index 8d7feab..37b1fc5 100644
--- a/site/src/site/blog/groovy-gatherers.adoc
+++ b/site/src/site/blog/groovy-gatherers.adoc
@@ -123,7 +123,7 @@ process the stream multiple times, or you shoved all the
logic in the
collector, but then you'd be giving up some of the key benefits of streams.
Luckily, with gatherers, we can now obtain this functionality.
-The first cases is so common, there is a built-in gatherer
(`Gatherers#windowFixed`) for it:
+The first case is so common, there is a built-in gatherer
(`Gatherers#windowFixed`) for it:
[source,groovy]
----