taler-docs

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

commit c6e9d31fd152f2c2874007d28d09c2ba14ce401e
parent c12d385e37a571e26f12aaaff7f3b28553f0c685
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Wed, 17 Mar 2021 06:58:32 -0400

capitalize first word in sentence; add period at end of sentence (five instances)

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

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -2314,23 +2314,23 @@ Querying known wire transfers .. ts:def:: TransferList interface TransferList { - // list of all the transfers that fit the filter that we know + // List of all the transfers that fit the filter that we know. transfers : TransferDetails[]; } .. ts:def:: TransferDetails interface TransferDetails { - // how much was wired to the merchant (minus fees) + // How much was wired to the merchant (minus fees). credit_amount: Amount; - // raw wire transfer identifier identifying the wire transfer (a base32-encoded value) + // Raw wire transfer identifier identifying the wire transfer (a base32-encoded value). wtid: WireTransferIdentifierRawP; - // target account that received the wire transfer + // Target account that received the wire transfer. payto_uri: string; - // base URL of the exchange that made the wire transfer + // Base URL of the exchange that made the wire transfer. exchange_url: string; // Serial number identifying the transfer in the merchant backend.