Merge pull request #984 from sicsbd/fix/typo

Fix typo
This commit is contained in:
Miguel Veloso 2019-04-03 11:51:28 +01:00 committed by GitHub
commit 6396e0ffbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -269,4 +269,4 @@ pub/
.mfractor
# Ignore HealthCheckdb
*healthchecksdb*
*healthchecksdb*

View File

@ -64,7 +64,7 @@ namespace Microsoft.eShopOnContainers.Services.Catalog.API.Model
if (quantityDesired <= 0)
{
throw new CatalogDomainException($"Item units desired should be greater than cero");
throw new CatalogDomainException($"Item units desired should be greater than zero");
}
int removed = Math.Min(quantityDesired, this.AvailableStock);

View File

@ -132,7 +132,7 @@ namespace Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.O
AddDomainEvent(new OrderStatusChangedToPaidDomainEvent(Id, OrderItems));
_orderStatusId = OrderStatus.Paid.Id;
_description = "The payment was performed at a simulated \"American Bank checking bank account endinf on XX35071\"";
_description = "The payment was performed at a simulated \"American Bank checking bank account ending on XX35071\"";
}
}