commit 1ede8a2be9dda22c9cd9d4086df2dc8481f70fab
parent 691baf2f742f27443bbfcca221715580f06d9ede
Author: Florian Dold <florian@dold.me>
Date: Mon, 1 Mar 2021 12:24:42 +0100
fix misc warnings/errors
Diffstat:
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/anastasis.rst b/anastasis.rst
@@ -1288,7 +1288,7 @@ Optional arguments to try uploading recovery document only to specific providers
Expected new state (backup process):
-.. code-block:: json
+.. code-block:: javascript
{
"backup_state": "POLICIES_REVIEWING",
@@ -1300,7 +1300,7 @@ Expected new state (backup process):
Arguments (example):
-.. code-block:: json
+.. code-block:: javascript
{
"policy": [
@@ -1455,7 +1455,7 @@ Expected new state (backup process):
Arguments (example):
-.. code-block:: json
+.. code-block:: javascript
{
"secret": string
diff --git a/taler-merchant-manual.rst b/taler-merchant-manual.rst
@@ -1013,22 +1013,22 @@ each instance:
if ($http_authorization !~ "(?i)ApiKey FOOTOKEN") {
return 401;
}
- proxy_pass ...; // as above
+ proxy_pass ...; # as above
}
location ~ ^/instances/bar/private/ {
if ($http_authorization !~ "(?i)ApiKey BARTOKEN") {
return 401;
}
- proxy_pass ...; // as above
+ proxy_pass ...; # as above
}
location /private/ {
if ($http_authorization !~ "(?i)ApiKey MASTERTOKEN") {
return 401;
}
- proxy_pass ...; // as above
+ proxy_pass ...; # as above
}
location ~ /private/ {
- return 401; // access to instances not explicitly configured is forbidden
+ return 401; # access to instances not explicitly configured is forbidden
}
Apache
diff --git a/taler-wallet.rst b/taler-wallet.rst
@@ -755,7 +755,7 @@ a payto URI). They don't involve a merchant.
interface CreateDepositGroupRequest {
depositPaytoUri: string;
- amount: AmountString;
+ amount: Amount;
}
:Response:
.. ts:def:: CreateDepositGroupResponse
@@ -920,8 +920,8 @@ Preparing a tip
// Has the tip already been accepted?
accepted: boolean;
- tipAmountRaw: AmountString;
- tipAmountEffective: AmountString;
+ tipAmountRaw: Amount;
+ tipAmountEffective: Amount;
exchangeBaseUrl: string;
expirationTimestamp: Timestamp;
}