From 89feeaecea395983f69b00a25aa291facec44a49 Mon Sep 17 00:00:00 2001 From: Berkan Sasmaz Date: Wed, 31 May 2023 09:41:46 +0300 Subject: [PATCH] fix grammar issue on Distributed-Event-Bus document --- docs/en/Distributed-Event-Bus.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/Distributed-Event-Bus.md b/docs/en/Distributed-Event-Bus.md index c4f100a299..5544d72573 100644 --- a/docs/en/Distributed-Event-Bus.md +++ b/docs/en/Distributed-Event-Bus.md @@ -191,7 +191,7 @@ It is possible to be informed when the ABP Framework **receives** or **sends** a ### Received events -The `DistributedEventReceived` local event is published when your application receives a event from the distributed event bus. `DistributedEventReceived` class has the following fields: +The `DistributedEventReceived` local event is published when your application receives an event from the distributed event bus. `DistributedEventReceived` class has the following fields: - **`Source`:** It represents the source of the distributed event. Source can be `Direct`, `Inbox`, `Outbox`. - **`EventName`:** It represents the [name](#event-name) of the event received. @@ -199,7 +199,7 @@ The `DistributedEventReceived` local event is published when your application re ### Sent events -The `DistributedEventSent` local event is published when your application sends a event to the distributed event bus. `DistributedEventSent` class has the following fields: +The `DistributedEventSent` local event is published when your application sends an event to the distributed event bus. `DistributedEventSent` class has the following fields: - **`Source`:** It represents the source of the distributed event. Source can be `Direct`, `Inbox`, `Outbox`. - **`EventName`:** It represents the [name](#event-name) of the event sent.