From 72550e4fa454c03c3aeb4ce7bedac4be6743fccf Mon Sep 17 00:00:00 2001 From: Thomas Carlier Date: Wed, 17 May 2023 14:48:10 +1000 Subject: [PATCH] Update Summary and Description for DeleteCustomerSummary --- Customers.Api/Summaries/DeleteCustomerSummary.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Customers.Api/Summaries/DeleteCustomerSummary.cs b/Customers.Api/Summaries/DeleteCustomerSummary.cs index 2dcf9d2..9b3af54 100644 --- a/Customers.Api/Summaries/DeleteCustomerSummary.cs +++ b/Customers.Api/Summaries/DeleteCustomerSummary.cs @@ -7,8 +7,8 @@ public class DeleteCustomerSummary : Summary { public DeleteCustomerSummary() { - Summary = "Deleted a customer the system"; - Description = "Deleted a customer the system"; + Summary = "Deletes a customer from the system"; + Description = "Deletes a customer from the system"; Response(204, "The customer was deleted successfully"); Response(404, "The customer was not found in the system"); }