diff --git a/docs/001_develop/02_server-capabilities/006_core-business-logic-event-handler/index.mdx b/docs/001_develop/02_server-capabilities/006_core-business-logic-event-handler/index.mdx index beb3a36a2b..8b31dfba81 100644 --- a/docs/001_develop/02_server-capabilities/006_core-business-logic-event-handler/index.mdx +++ b/docs/001_develop/02_server-capabilities/006_core-business-logic-event-handler/index.mdx @@ -485,7 +485,7 @@ As with `onValidate` the block must finish with an [`ack`](#ack). If the event i 1. The definition takes two `` (aka Generic) parameters instead of one. The first is the context object, which will be passed to the `onCommit` block. The second is the same as a regular [`eventHandler`](#eventHandler): the event metadata. 1. The [`onValidate`](#onvalidate) block needs to return a [`validationAck`](#validationAck) instead of a regular [`ack`](#ack). -1. The [`onCommit`](#oncommit) block has rwo lambda parameters, the standard event + a second, which is a reference to the context object returned in the `validationAck`. +1. The [`onCommit`](#oncommit) block has two lambda parameters, the standard event + a second, which is a reference to the context object returned in the `validationAck`. #### `validationAck`