Skip to content

Commit a10d9fb

Browse files
rafsanulhasanrafsanulhasan
authored andcommitted
fix typo
1 parent e0ea360 commit a10d9fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Services/Catalog/Catalog.API/Model/CatalogItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public int RemoveStock(int quantityDesired)
6464

6565
if (quantityDesired <= 0)
6666
{
67-
throw new CatalogDomainException($"Item units desired should be greater than cero");
67+
throw new CatalogDomainException($"Item units desired should be greater than zero");
6868
}
6969

7070
int removed = Math.Min(quantityDesired, this.AvailableStock);

0 commit comments

Comments
 (0)