commit 8dfed47e0d2b165273c0b2be2fdb0d150bacc759
parent 280808a89e7f7ddcf6c82b5e7ceec8d8866ee16c
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Wed, 17 Mar 2021 05:05:14 -0400
capitalize first word in sentence; add period at end of sentence (three instances)
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -1303,7 +1303,7 @@ Adding products to the inventory
// Map from IETF BCP 47 language tags to localized descriptions.
description_i18n: { [lang_tag: string]: string };
- // unit in which the product is measured (liters, kilograms, packages, etc.)
+ // Unit in which the product is measured (liters, kilograms, packages, etc.).
unit: string;
// The price for one ``unit`` of the product. Zero is used
@@ -1387,7 +1387,7 @@ Inspecting inventory
// Map from IETF BCP 47 language tags to localized descriptions.
description_i18n: { [lang_tag: string]: string };
- // unit in which the product is measured (liters, kilograms, packages, etc.)
+ // Unit in which the product is measured (liters, kilograms, packages, etc.).
unit: string;
// The price for one ``unit`` of the product. Zero is used
@@ -2912,7 +2912,7 @@ The `Product` object describes the product being purchased from the merchant. It
// The number of units of the product to deliver to the customer.
quantity?: Integer;
- // The unit in which the product is measured (liters, kilograms, packages, etc.)
+ // Unit in which the product is measured (liters, kilograms, packages, etc.).
unit?: string;
// The price of the product; this is the total price for ``quantity`` times ``unit`` of this product.