gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: fix misc warnings/errors


From: gnunet
Subject: [taler-docs] branch master updated: fix misc warnings/errors
Date: Mon, 01 Mar 2021 12:24:48 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 1ede8a2  fix misc warnings/errors
1ede8a2 is described below

commit 1ede8a2be9dda22c9cd9d4086df2dc8481f70fab
Author: Florian Dold <florian@dold.me>
AuthorDate: Mon Mar 1 12:24:42 2021 +0100

    fix misc warnings/errors
---
 anastasis.rst             | 6 +++---
 taler-merchant-manual.rst | 8 ++++----
 taler-wallet.rst          | 6 +++---
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/anastasis.rst b/anastasis.rst
index 3d0bc1f..5c82fdd 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 0d98583..990b57b 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 8707228..be47144 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;
     }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]