diff --git a/src/docs/antora/modules/ROOT/pages/events.adoc b/src/docs/antora/modules/ROOT/pages/events.adoc index 826d8502e..50dc620e5 100644 --- a/src/docs/antora/modules/ROOT/pages/events.adoc +++ b/src/docs/antora/modules/ROOT/pages/events.adoc @@ -254,7 +254,7 @@ RESUBMITTED -right-> PROCESSING : resubmission triggered In addition to the status, each publication tracks: * _Last resubmission date_ – When the publication was last resubmitted (if ever). Exposed via `EventPublication.getLastResubmissionDate()`. -* _Completion attempts_ – How often the listener was invoked (including the current run). Incremented when moving to `PROCESSING`, so a crash during the listener still leaves the attempt count updated. Exposed via `EventPublication.getCompletionAttempts()`. +* _Completion attempts_ – How often the listener was invoked (including the current run). Incremented when moving to `PROCESSING`, so a listener crash still leaves the attempt count updated. Exposed via `EventPublication.getCompletionAttempts()`. These allow you to implement policies such as "resubmit only if failed longer than X" or "stop after N attempts" using the resubmission APIs and options.