We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0ea360 commit a10d9fbCopy full SHA for a10d9fb
1 file changed
src/Services/Catalog/Catalog.API/Model/CatalogItem.cs
@@ -64,7 +64,7 @@ public int RemoveStock(int quantityDesired)
64
65
if (quantityDesired <= 0)
66
{
67
- throw new CatalogDomainException($"Item units desired should be greater than cero");
+ throw new CatalogDomainException($"Item units desired should be greater than zero");
68
}
69
70
int removed = Math.Min(quantityDesired, this.AvailableStock);
0 commit comments