Browse Source

fix typo

pull/984/head
rafsanulhasan 5 years ago
parent
commit
a10d9fb663
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Services/Catalog/Catalog.API/Model/CatalogItem.cs

+ 1
- 1
src/Services/Catalog/Catalog.API/Model/CatalogItem.cs 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);


Loading…
Cancel
Save