taler-docs

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

commit 2078c3127a3bd19618c1b5c3fa2fb3389bf08f07
parent 476a24c642658358c9a9d3b935a66d9c2628dfb9
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date:   Wed, 17 Mar 2021 06:53:01 -0400

capitalize first word in sentence; add period at end of sentence (three 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 @@ -2261,17 +2261,17 @@ Informing the backend about incoming wire transfers .. ts:def:: TrackTransferProof interface TrackTransferProof { - // signature from the exchange made with purpose - // ``TALER_SIGNATURE_EXCHANGE_CONFIRM_WIRE_DEPOSIT`` + // Signature from the exchange made with purpose + // ``TALER_SIGNATURE_EXCHANGE_CONFIRM_WIRE_DEPOSIT``. exchange_sig: EddsaSignature; - // public EdDSA key of the exchange that was used to generate the signature. + // Public EdDSA key of the exchange that was used to generate the signature. // Should match one of the exchange's signing keys from /keys. Again given // explicitly as the client might otherwise be confused by clock skew as to // which signing key was used. exchange_pub: EddsaSignature; - // hash of the wire details (identical for all deposits) + // Hash of the wire details (identical for all deposits). // Needed to check the ``exchange_sig`` h_wire: HashCode; }