taler-docs

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

commit 26359155cbc881f04dbc6e05224c531fe4d5aec4
parent 474821afc2bc4642308e612fd524e739ddb009fa
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Wed, 17 Mar 2021 06:44:14 -0400

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

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

diff --git a/core/api-merchant.rst b/core/api-merchant.rst @@ -2101,16 +2101,16 @@ Informing the backend about incoming wire transfers .. ts:def:: TransferInformation interface TransferInformation { - // 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; }