summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-03-01 12:24:42 +0100
committerFlorian Dold <florian@dold.me>2021-03-01 12:24:42 +0100
commit1ede8a2be9dda22c9cd9d4086df2dc8481f70fab (patch)
treeacc32c6ef4cd77561dfe0cf70b05c041638612e0
parent691baf2f742f27443bbfcca221715580f06d9ede (diff)
downloaddocs-1ede8a2be9dda22c9cd9d4086df2dc8481f70fab.tar.gz
docs-1ede8a2be9dda22c9cd9d4086df2dc8481f70fab.tar.bz2
docs-1ede8a2be9dda22c9cd9d4086df2dc8481f70fab.zip
fix misc warnings/errors
-rw-r--r--anastasis.rst6
-rw-r--r--taler-merchant-manual.rst8
-rw-r--r--taler-wallet.rst6
3 files changed, 10 insertions, 10 deletions
diff --git a/anastasis.rst b/anastasis.rst
index 3d0bc1ff..5c82fddb 100644
--- 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
index 0d98583c..990b57b1 100644
--- 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
index 8707228b..be471446 100644
--- 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;
}