commit 04ec4ea05a3f7d919580d36708245805083ed997
parent dd7e2f95cda8877d8ef640a51007e772de17ca6a
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Fri, 19 Mar 2021 14:29:42 -0400
add period at end of sentence (three instances)
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/core/api-bank-access.rst b/core/api-bank-access.rst
@@ -62,7 +62,7 @@ name and account password, at least in the GNU Taler demo bank implementation.
.. ts:def:: BankAccountCreateWithdrawalRequest
interface BankAccountCreateWithdrawalRequest {
- // Amount to withdraw
+ // Amount to withdraw.
amount: Amount;
}
@@ -71,10 +71,10 @@ name and account password, at least in the GNU Taler demo bank implementation.
.. ts:def:: BankAccountCreateWithdrawalResponse
interface BankAccountCreateWithdrawalResponse {
- // ID of the withdrawal, can be used to view/modify the withdrawal operation
+ // ID of the withdrawal, can be used to view/modify the withdrawal operation.
withdrawal_id: string;
- // URI that can be passed to the wallet to initiate the withdrawal
+ // URI that can be passed to the wallet to initiate the withdrawal.
taler_withdraw_uri: string;
}