[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-docs] branch master updated: fix build issues
From: |
gnunet |
Subject: |
[taler-docs] branch master updated: fix build issues |
Date: |
Sun, 04 Aug 2024 19:50:28 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository docs.
The following commit(s) were added to refs/heads/master by this push:
new 46eeefdd fix build issues
46eeefdd is described below
commit 46eeefddcf761a248e59d6543f11b1b242f0c9b0
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Aug 4 19:50:25 2024 +0200
fix build issues
---
core/api-exchange.rst | 2 +-
taler-developer-manual.rst | 2 +-
taler-exchange-manual.rst | 14 +++++++-------
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index 62520803..073ed129 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -1794,7 +1794,7 @@ and freeze or unfreeze accounts suspected of money
laundering.
// that there is no KYC check that could be passed
// to modify the ``new_rules``.
// New since protocol **v20**.
- new_measure?: String;
+ new_measure?: string;
// True if the account should remain under investigation by AML staff.
// New since protocol **v20**.
diff --git a/taler-developer-manual.rst b/taler-developer-manual.rst
index 053a0c65..1c5a0732 100644
--- a/taler-developer-manual.rst
+++ b/taler-developer-manual.rst
@@ -396,7 +396,7 @@ serve Taler on the Internet:
built by Buildbot every 2 hours from the ``sandcastle-ng.git``.
Master key may be reset occasionally
- - ``taler-test``: serves ``*.test.taler.net`` and does *NOT* get
+- ``taler-test``: serves ``*.test.taler.net`` and does *NOT* get
automatically built, and runs more recent tags and/or unreleased
versions of Taler components. Master key may be reset
occasionally.
diff --git a/taler-exchange-manual.rst b/taler-exchange-manual.rst
index a403322c..6a2766f3 100644
--- a/taler-exchange-manual.rst
+++ b/taler-exchange-manual.rst
@@ -1827,7 +1827,7 @@ AML programs are helper programs that can:
provider_name?: string;
// True if the KYC process completed.
- bool finished,
+ finished: boolean;
// Numeric `error code <error-codes>`, if the
// KYC process did not succeed; 0 on success.
@@ -2302,10 +2302,10 @@ This template is instantiated using the following
information:
* ec: Integer; numeric Taler error code, should be shown to indicate the
error compactly for reporting to developers
- * hint: String; human-readable Taler error code, should be shown for the
+ * hint: string; human-readable Taler error code, should be shown for the
user to understand the error
- * debug: Bool; true if we are running in debug mode and are allowed to
return HTML with potentially sensitive information
+ * debug: boolean; true if we are running in debug mode and are allowed to
return HTML with potentially sensitive information
* server_response: Object; could be NULL; this includes the (malformed)
OAuth2 server response, it should be shown to the use if "debug" is true
@@ -2337,10 +2337,10 @@ This template is instantiated using the following
information:
* ec: Integer; numeric Taler error code, should be shown to indicate the
error compactly for reporting to developers
- * hint: String; human-readable Taler error code, should be shown for the
+ * hint: string; human-readable Taler error code, should be shown for the
user to understand the error
- * debug: Bool; true if we are running in debug mode and are allowed to
return HTML with potentially sensitive information
+ * debug: boolean; true if we are running in debug mode and are allowed to
return HTML with potentially sensitive information
* converter: String; name of the conversion command that failed which was
used by the Exchange
@@ -2450,10 +2450,10 @@ This template is instantiated using the following
information:
* ec: Integer; numeric Taler error code, should be shown to indicate the
error compactly for reporting to developers
- * hint: String; human-readable Taler error code, should be shown for the
+ * hint: string; human-readable Taler error code, should be shown for the
user to understand the error
- * debug: Bool; true if we are running in debug mode and are allowed to
return HTML with potentially sensitive information
+ * debug: boolean; true if we are running in debug mode and are allowed to
return HTML with potentially sensitive information
* server_response: Object; could be NULL; this includes the (malformed)
OAuth2 server response, it should be shown to the use if "debug" is true
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [taler-docs] branch master updated: fix build issues,
gnunet <=