taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit bef8ce75397a8f8da40300357dee440aa439bd60
parent 61d961181011afec266386915815382c4a97f91e
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Wed, 17 Mar 2021 05:33:00 -0400

add period at end of sentence (six instances)

Diffstat:
Mcore/api-merchant.rst | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -1634,10 +1634,10 @@ Creating orders that the backend would otherwise fill in via the inventory. interface MinimalInventoryProduct { - // Which product is requested (here mandatory!) + // Which product is requested (here mandatory!). product_id: string; - // How many units of the product are requested + // How many units of the product are requested. quantity: Integer; } @@ -1645,7 +1645,7 @@ Creating orders .. ts:def:: PostOrderResponse interface PostOrderResponse { - // Order ID of the response that was just created + // Order ID of the response that was just created. order_id: string; // Token that authorizes the wallet to claim the order. @@ -1659,13 +1659,13 @@ Creating orders interface OutOfStockResponse { - // Product ID of an out-of-stock item + // Product ID of an out-of-stock item. product_id: string; - // Requested quantity + // Requested quantity. requested_quantity: Integer; - // Available quantity (must be below ``requested_quanitity``) + // Available quantity (must be below ``requested_quanitity``). available_quantity: Integer; // When do we expect the product to be again in stock?