From f8324ddfc92255c6993eb056d323b9779b3b546a Mon Sep 17 00:00:00 2001 From: sant0s <919197+sant0s@users.noreply.github.com> Date: Mon, 20 Jul 2026 16:13:16 +0100 Subject: [PATCH] Update events.adoc Simplify text. Signed-off-by: sant0s <919197+sant0s@users.noreply.github.com> --- src/docs/antora/modules/ROOT/pages/events.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/antora/modules/ROOT/pages/events.adoc b/src/docs/antora/modules/ROOT/pages/events.adoc index 826d8502e..dc884c54f 100644 --- a/src/docs/antora/modules/ROOT/pages/events.adoc +++ b/src/docs/antora/modules/ROOT/pages/events.adoc @@ -344,7 +344,7 @@ dependencies { This artifact contains primary abstractions that are available to application code as Spring Beans: -* `CompletedEventPublications` -- This interface allows accessing all completed event publications, and provides an API to immediately purge all of them from the database or the completed publications older than a given duration (for example, 1 minute). +* `CompletedEventPublications` -- This interface allows accessing all completed event publications, and provides an API to immediately purge all of them from the database or the ones older than a given duration (for example, 1 minute). * `IncompleteEventPublications` -- This interface allows accessing all incomplete event publications to resubmit either the ones matching a given predicate, older than a given `Duration` relative to the original publishing date, or matching custom criteria via `resubmitIncompletePublications(ResubmissionOptions)` (since 2.0). * `FailedEventPublications` (since 2.0) -- This interface allows resubmitting only failed event publications via `resubmit(ResubmissionOptions)`, as described in <>.