From 3888cffa08535fe98f6dbf8858bb5f5d9ccec4a8 Mon Sep 17 00:00:00 2001 From: Joni Date: Thu, 5 Jul 2018 14:44:45 +0900 Subject: [PATCH 1/2] Fix spelling --- .../Ordering/Ordering.Infrastructure/OrderingContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs index a2cfb96a5..257bf7b18 100644 --- a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs +++ b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs @@ -56,7 +56,7 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.Infrastructure await _mediator.DispatchDomainEventsAsync(this); // After executing this line all the changes (from the Command Handler and Domain Event Handlers) - // performed throught the DbContext will be commited + // performed through the DbContext will be commited var result = await base.SaveChangesAsync(); return true; From c55e2adecb503cbe55455cef0f9794fa2cd6979b Mon Sep 17 00:00:00 2001 From: Joni Date: Thu, 5 Jul 2018 15:07:38 +0900 Subject: [PATCH 2/2] Fix spelling 'commited' => 'committed' --- .../Ordering/Ordering.Infrastructure/OrderingContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs index 257bf7b18..564acdfb4 100644 --- a/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs +++ b/src/Services/Ordering/Ordering.Infrastructure/OrderingContext.cs @@ -56,7 +56,7 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.Infrastructure await _mediator.DispatchDomainEventsAsync(this); // After executing this line all the changes (from the Command Handler and Domain Event Handlers) - // performed through the DbContext will be commited + // performed through the DbContext will be committed var result = await base.SaveChangesAsync(); return true;