From c59e522161df902270a43c161b55b349dbe9e512 Mon Sep 17 00:00:00 2001 From: Gerard Gunnewijk Date: Tue, 8 Dec 2020 12:39:39 +0100 Subject: [PATCH] Finished sentence and fixed spelling mistake. (#1536) --- .../Events/ProductPriceChangedIntegrationEvent.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/ProductPriceChangedIntegrationEvent.cs b/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/ProductPriceChangedIntegrationEvent.cs index 7c14a07d1..00f25b9e5 100644 --- a/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/ProductPriceChangedIntegrationEvent.cs +++ b/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/ProductPriceChangedIntegrationEvent.cs @@ -3,8 +3,8 @@ using BuildingBlocks.EventBus.Events; // Integration Events notes: - // An Event is “something that has happened in the past”, therefore its name has to be - // An Integration Event is an event that can cause side effects to other microsrvices, Bounded-Contexts or external systems. + // An Event is “something that has happened in the past”, therefore its name has to be past tense + // An Integration Event is an event that can cause side effects to other microservices, Bounded-Contexts or external systems. public class ProductPriceChangedIntegrationEvent : IntegrationEvent { public int ProductId { get; private set; } @@ -20,4 +20,4 @@ OldPrice = oldPrice; } } -} \ No newline at end of file +}