fix typo in throw exception message

This commit is contained in:
Rafsanul Hasan 2018-09-09 15:13:22 +06:00
parent a09a1bf649
commit 678d920e4f
No known key found for this signature in database
GPG Key ID: FC57FD2D87BE60DD

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