commit ae61471a3d71169d5753c90585307e0c216a6e6b parent d34f2aed00428305d42fafb7fb0c4e0878c9ad4a Author: Christian Grothoff <christian@grothoff.org> Date: Thu, 14 Nov 2024 08:45:15 +0100 doxygen fixes Diffstat:
10 files changed, 14 insertions(+), 15 deletions(-)
diff --git a/src/bank-lib/fakebank_bank_post_accounts_token.c b/src/bank-lib/fakebank_bank_post_accounts_token.c @@ -38,7 +38,7 @@ * @param h our fakebank handle * @param connection the connection * @param account_name name of the account - * @param scope scope of the token + * @param scope_s scope of the token (as a string) * @param refreshable true if the token can be refreshed * @param duration how long should the token be valid * @return MHD result code diff --git a/src/exchange/taler-exchange-httpd_common_kyc.h b/src/exchange/taler-exchange-httpd_common_kyc.h @@ -93,7 +93,7 @@ TEH_kyc_run_measure_for_attributes ( * in the DB. * * @param scope the HTTP request logging scope - * @param instant_measure instant measure to run + * @param instant_ms instant measure to run * @param account_id account affected by the measure * @param cb function to call with the result * @param cb_cls closure for @a cb diff --git a/src/exchangedb/pg_insert_successor_measure.c b/src/exchangedb/pg_insert_successor_measure.c @@ -14,7 +14,7 @@ TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/> */ /** - * @file exchangedb/pg_insert_succesor_measure.c + * @file exchangedb/pg_insert_successor_measure.c * @brief Implementation of the insert_succesor_measure function for Postgres * @author Florian Dold */ diff --git a/src/exchangedb/pg_select_aml_attributes.c b/src/exchangedb/pg_select_aml_attributes.c @@ -56,7 +56,7 @@ struct AmlAttributeResultContext /** * Function to be called with the results of a SELECT statement * that has returned @a num_results results. Helper function - * for #TEH_PG_select_aml_process(). + * for #TEH_PG_select_aml_attributes(). * * @param cls closure of type `struct AmlAttributeResultContext *` * @param result the postgres result diff --git a/src/exchangedb/pg_select_aml_decisions.c b/src/exchangedb/pg_select_aml_decisions.c @@ -56,7 +56,7 @@ struct AmlProcessResultContext /** * Function to be called with the results of a SELECT statement * that has returned @a num_results results. Helper function - * for #TEH_PG_select_aml_process(). + * for #TEH_PG_select_aml_decisions(). * * @param cls closure of type `struct AmlProcessResultContext *` * @param result the postgres result diff --git a/src/include/taler_bank_service.h b/src/include/taler_bank_service.h @@ -251,7 +251,7 @@ TALER_BANK_account_token ( * Cancel an add incoming operation. This function cannot be used on a * request handle if a response is already served for it. * - * @param[in] aai the admin add incoming request handle + * @param[in] ath the admin add incoming request handle */ void TALER_BANK_account_token_cancel ( diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h @@ -1880,7 +1880,7 @@ TALER_full_payto_hash (const struct TALER_FullPayto fpayto, /** * Compute the hash of a normalized payto URI. * - * @param payto URI to hash + * @param npayto normalized URI to hash * @param[out] h_npayto where to write the hash */ void diff --git a/src/include/taler_kyclogic_lib.h b/src/include/taler_kyclogic_lib.h @@ -812,7 +812,7 @@ TALER_KYCLOGIC_rule_get_instant_measure ( * and a SKIP measure, and thus should be immediately * executed. * - * @param rls legitimization rule set + * @param lrs legitimization rule set * @param measures_spec measures spec * @returns NULL if there is no instant measure */ @@ -823,10 +823,9 @@ TALER_KYCLOGIC_get_instant_measure ( /** - * Check if there is a measure in @a lrs - * that is named @a measure. + * Check if there is a measure in @a lrs that is named @a measure. * - * @param rls legitimization rule set + * @param lrs legitimization rule set * @param measure_name measures spec * @returns NULL if not found */ diff --git a/src/include/taler_testing_lib.h b/src/include/taler_testing_lib.h @@ -755,7 +755,6 @@ TALER_TESTING_cmd_bank_credits ( * @param account_name account name to request access token for * @param scope requested token scope * @param refreshable true if the token should be refreshable - * @param description human-readable token description (for token management) * @param duration how long should the token be valid * @param expected_http_status expected server response code * @return the command. diff --git a/src/kyclogic/kyclogic_api.c b/src/kyclogic/kyclogic_api.c @@ -1362,12 +1362,13 @@ TALER_KYCLOGIC_rule2priority ( /** * Perform very primitive word splitting of a command. * - * @args command command to split - * @args extra_args extra arguments to append after the word + * @param command command to split + * @param extra_args extra arguments to append after the word * @returns NULL-terminated array of words */ static char ** -split_words (const char *command, const char **extra_args) +split_words (const char *command, + const char **extra_args) { unsigned int i = 0; unsigned int j = 0;