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"); }