taler-docs

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

commit d0c163b76364efce320bdbc2e593a3f4c890a748
parent 750799043b84cd4563e33cf6df1ce4ffea9d2797
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Wed, 17 Mar 2021 06:09:28 -0400

capitalize first word in sentence; 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 @@ -1712,25 +1712,25 @@ Inspecting orders // Order ID of the transaction related to this entry. order_id: string; - // row ID of the order in the database + // Row ID of the order in the database. row_id: number; - // when the order was created + // When the order was created. timestamp: Timestamp; - // the amount of money the order is for + // The amount of money the order is for. amount: Amount; - // the summary of the order + // The summary of the order. summary: string; - // whether some part of the order is refundable, + // Whether some part of the order is refundable, // that is the refund deadline has not yet expired // and the total amount refunded so far is below // the value of the original transaction. refundable: boolean; - // whether the order has been paid or not + // Whether the order has been paid or not. paid: boolean; }