summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-07-22 23:56:52 +0200
committerChristian Grothoff <christian@grothoff.org>2020-07-22 23:56:52 +0200
commit0e808b648a56e3e4e17d6e03ce776b0b7a422f25 (patch)
tree59720c0b409f30fc6520526ba7170b0ba60c255c /src
parentc8a370d9111cee69b6d9b6edc177dcc58eec976a (diff)
downloadexchange-0e808b648a56e3e4e17d6e03ce776b0b7a422f25.tar.gz
exchange-0e808b648a56e3e4e17d6e03ce776b0b7a422f25.tar.bz2
exchange-0e808b648a56e3e4e17d6e03ce776b0b7a422f25.zip
fix misc typos
Diffstat (limited to 'src')
-rw-r--r--src/auditor/report-lib.c2
-rw-r--r--src/auditor/report-lib.h4
-rw-r--r--src/exchange/test_taler_exchange_httpd.conf4
-rw-r--r--src/exchangedb/test_exchangedb.c2
-rw-r--r--src/include/taler_auditor_service.h2
-rw-r--r--src/include/taler_mhd_lib.h2
-rw-r--r--src/lib/exchange_api_handle.c2
-rw-r--r--src/testing/test_exchange_api_twisted.c3
-rw-r--r--src/testing/test_exchange_api_twisted.conf4
-rw-r--r--src/testing/testing_api_cmd_serialize_keys.c2
10 files changed, 13 insertions, 14 deletions
diff --git a/src/auditor/report-lib.c b/src/auditor/report-lib.c
index 4aa8b45b6..f946de52c 100644
--- a/src/auditor/report-lib.c
+++ b/src/auditor/report-lib.c
@@ -572,7 +572,7 @@ TALER_ARL_amount_subtract_ (struct TALER_Amount *diff,
/**
* Perform subtraction of amounts. Negative results should be signalled by the
* return value (leaving @a diff set to 'invalid'). If the subtraction fails
- * for other reasons (currency missmatch, normalization failure), logs a
+ * for other reasons (currency mismatch, normalization failure), logs a
* detailed error and calls exit() to terminate the process (!).
*
* Do not call this function directly, use #TALER_ARL_amount_subtract_neg().
diff --git a/src/auditor/report-lib.h b/src/auditor/report-lib.h
index 7ae308259..0842f9154 100644
--- a/src/auditor/report-lib.h
+++ b/src/auditor/report-lib.h
@@ -247,7 +247,7 @@ enum TALER_ARL_SubtractionResult
/**
* Perform subtraction of amounts. Negative results should be signalled by the
* return value (leaving @a diff set to 'invalid'). If the subtraction fails
- * for other reasons (currency missmatch, normalization failure), logs a
+ * for other reasons (currency mismatch, normalization failure), logs a
* detailed error and calls exit() to terminate the process (!).
*
* Do not call this function directly, use #TALER_ARL_amount_subtract_neg().
@@ -274,7 +274,7 @@ TALER_ARL_amount_subtract_neg_ (struct TALER_Amount *diff,
/**
* Perform subtraction of amounts. Negative results should be signalled by
* the return value (leaving @a diff set to 'invalid'). If the subtraction
- * fails for other reasons (currency missmatch, normalization failure), logs a
+ * fails for other reasons (currency mismatch, normalization failure), logs a
* detailed error and calls exit() to terminate the process (!).
*
* @param[out] diff where to store (@a a1 - @a a2)
diff --git a/src/exchange/test_taler_exchange_httpd.conf b/src/exchange/test_taler_exchange_httpd.conf
index e7f763e79..23307cd2e 100644
--- a/src/exchange/test_taler_exchange_httpd.conf
+++ b/src/exchange/test_taler_exchange_httpd.conf
@@ -1,5 +1,5 @@
[PATHS]
-# Persistant data storage for the testcase
+# Persistent data storage for the testcase
TALER_TEST_HOME = test_taler_exchange_httpd_home/
[taler]
@@ -76,7 +76,7 @@ WIRE_GATEWAY_URL = "http://localhost:8082/3/"
# Wire fees are specified by wire method
[fees-x-taler-bank]
-# Fees for the forseeable future...
+# Fees for the foreseeable future...
# If you see this after 2018, update to match the next 10 years...
WIRE-FEE-2018 = EUR:0.01
WIRE-FEE-2019 = EUR:0.01
diff --git a/src/exchangedb/test_exchangedb.c b/src/exchangedb/test_exchangedb.c
index c9b5c6ce7..83d75b29c 100644
--- a/src/exchangedb/test_exchangedb.c
+++ b/src/exchangedb/test_exchangedb.c
@@ -191,7 +191,7 @@ struct DenomKeyPair
/**
* Destroy a denomination key pair. The key is not necessarily removed from the DB.
*
- * @param dkp the keypair to destroy
+ * @param dkp the key pair to destroy
*/
static void
destroy_denom_key_pair (struct DenomKeyPair *dkp)
diff --git a/src/include/taler_auditor_service.h b/src/include/taler_auditor_service.h
index 27959a889..e7f056e5f 100644
--- a/src/include/taler_auditor_service.h
+++ b/src/include/taler_auditor_service.h
@@ -309,7 +309,7 @@ struct TALER_AUDITOR_ExchangeInfo
/**
- * Function called with the result from /exchagnes.
+ * Function called with the result from /exchanges.
*
* @param cls closure
* @param hr HTTP response data
diff --git a/src/include/taler_mhd_lib.h b/src/include/taler_mhd_lib.h
index 8cfb80721..4b34f41df 100644
--- a/src/include/taler_mhd_lib.h
+++ b/src/include/taler_mhd_lib.h
@@ -330,7 +330,7 @@ TALER_MHD_parse_json_array (struct MHD_Connection *connection,
/**
- * Extraxt fixed-size base32crockford encoded data from request.
+ * Extract fixed-size base32crockford encoded data from request.
*
* Queues an error response to the connection if the parameter is missing or
* invalid.
diff --git a/src/lib/exchange_api_handle.c b/src/lib/exchange_api_handle.c
index b12e88a25..75b63abcb 100644
--- a/src/lib/exchange_api_handle.c
+++ b/src/lib/exchange_api_handle.c
@@ -1499,7 +1499,7 @@ parse_date_string (const char *date,
/**
* Function called for each header in the HTTP /keys response.
* Finds the "Expire:" header and parses it, storing the result
- * in the "expire" field fo the keys request.
+ * in the "expire" field of the keys request.
*
* @param buffer header data received
* @param size size of an item in @a buffer
diff --git a/src/testing/test_exchange_api_twisted.c b/src/testing/test_exchange_api_twisted.c
index 25cee058c..0b8de5b94 100644
--- a/src/testing/test_exchange_api_twisted.c
+++ b/src/testing/test_exchange_api_twisted.c
@@ -153,8 +153,7 @@ run (void *cls,
* NOTE: not all CMDs actually need the twister,
* so it may be better to move those into the "main"
* lib test suite.
- */
- struct TALER_TESTING_Command refund[] = {
+ */struct TALER_TESTING_Command refund[] = {
CMD_TRANSFER_TO_EXCHANGE ("create-reserve-r1",
"EUR:5.01"),
CMD_EXEC_WIREWATCH ("wirewatch-r1"),
diff --git a/src/testing/test_exchange_api_twisted.conf b/src/testing/test_exchange_api_twisted.conf
index f93fe912a..3f5b6f884 100644
--- a/src/testing/test_exchange_api_twisted.conf
+++ b/src/testing/test_exchange_api_twisted.conf
@@ -2,7 +2,7 @@
#
[PATHS]
-# Persistant data storage for the testcase
+# Persistent data storage for the testcase
TALER_TEST_HOME = test_exchange_api_home/
@@ -109,7 +109,7 @@ UNIX_MATCH_GID = YES
[fees-x-taler-bank]
-# Fees for the forseeable future...
+# Fees for the foreseeable future...
# If you see this after 2017, update to match the next 10 years...
WIRE-FEE-2018 = EUR:0.01
WIRE-FEE-2019 = EUR:0.01
diff --git a/src/testing/testing_api_cmd_serialize_keys.c b/src/testing/testing_api_cmd_serialize_keys.c
index aa39b8a37..82df0f064 100644
--- a/src/testing/testing_api_cmd_serialize_keys.c
+++ b/src/testing/testing_api_cmd_serialize_keys.c
@@ -39,7 +39,7 @@ struct SerializeKeysState
/**
* Exchange URL. Needed because the exchange gets disconnected
* from, after keys serialization. This value is then needed by
- * subsequent commands that have to reconnect to the exchagne.
+ * subsequent commands that have to reconnect to the exchange.
*/
char *exchange_url;
};