commit 46eeefddcf761a248e59d6543f11b1b242f0c9b0
parent 20614533378d81e52e08eea34d8049900fad0a47
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 4 Aug 2024 19:50:25 +0200
fix build issues
Diffstat:
3 files changed, 9 insertions(+), 9 deletions(-)
diff --git 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
@@ -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
@@ -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