diff options
author | MS <ms@taler.net> | 2020-10-20 16:39:50 +0200 |
---|---|---|
committer | MS <ms@taler.net> | 2020-10-20 16:39:50 +0200 |
commit | 24e5214c70720193dd82d058e399aae7093624a2 (patch) | |
tree | 00894d5371e82cc784535cd21e664d12f07ea1aa /src | |
parent | d615702a365d8f0b93c788c2bbad214d26ea3700 (diff) |
@param
Diffstat (limited to 'src')
-rw-r--r-- | src/testing/testing_api_cmd_abort_order.c | 5 | ||||
-rw-r--r-- | src/testing/testing_api_cmd_claim_order.c | 2 | ||||
-rw-r--r-- | src/testing/testing_api_cmd_forget_order.c | 2 | ||||
-rw-r--r-- | src/testing/testing_api_cmd_get_orders.c | 3 | ||||
-rw-r--r-- | src/testing/testing_api_cmd_lock_product.c | 2 | ||||
-rw-r--r-- | src/testing/testing_api_cmd_post_orders.c | 4 |
6 files changed, 8 insertions, 10 deletions
diff --git a/src/testing/testing_api_cmd_abort_order.c b/src/testing/testing_api_cmd_abort_order.c index c0c4a155..a0d4484d 100644 --- a/src/testing/testing_api_cmd_abort_order.c +++ b/src/testing/testing_api_cmd_abort_order.c @@ -86,9 +86,6 @@ struct AbortState * clobbered in the process * @param is interpreter state * @param amount_with_fee total amount to be paid for a contract. - * @param amount_without_fee to be removed, there is no - * per-contract fee, only per-coin exists. - * @param refund_fee per-contract? per-coin? * @return #GNUNET_OK on success */ static int @@ -385,7 +382,7 @@ abort_cleanup (void *cls, * Offer internal data useful to other commands. * * @param cls closure - * @param ret[out] result (could be anything) + * @param[out] ret result (could be anything) * @param trait name of the trait * @param index index number of the object to extract. * @return #GNUNET_OK on success diff --git a/src/testing/testing_api_cmd_claim_order.c b/src/testing/testing_api_cmd_claim_order.c index 9ef18e06..3f493dc6 100644 --- a/src/testing/testing_api_cmd_claim_order.c +++ b/src/testing/testing_api_cmd_claim_order.c @@ -249,7 +249,7 @@ order_claim_run (void *cls, * Offer internal data to other commands. * * @param cls closure - * @param ret[out] result (could be anything) + * @param[out] ret result (could be anything) * @param trait name of the trait * @param index index number of the object to extract. * @return #GNUNET_OK on success diff --git a/src/testing/testing_api_cmd_forget_order.c b/src/testing/testing_api_cmd_forget_order.c index 777be585..31b24bc0 100644 --- a/src/testing/testing_api_cmd_forget_order.c +++ b/src/testing/testing_api_cmd_forget_order.c @@ -175,7 +175,7 @@ order_forget_run (void *cls, * Offer internal data to other commands. * * @param cls closure - * @param ret[out] result (could be anything) + * @param[out] ret result (could be anything) * @param trait name of the trait * @param index index number of the object to extract. * @return #GNUNET_OK on success diff --git a/src/testing/testing_api_cmd_get_orders.c b/src/testing/testing_api_cmd_get_orders.c index d61f9f5e..a4dcc815 100644 --- a/src/testing/testing_api_cmd_get_orders.c +++ b/src/testing/testing_api_cmd_get_orders.c @@ -388,7 +388,8 @@ conclude_task (void *cls) * * @param cls closure * @param hr HTTP response details - * @param osr order status response details (on success) + * @param orders_length how many orders are returned + * @param orders the returned orders */ static void merchant_poll_orders_cb ( diff --git a/src/testing/testing_api_cmd_lock_product.c b/src/testing/testing_api_cmd_lock_product.c index 198b7570..a61f1bd4 100644 --- a/src/testing/testing_api_cmd_lock_product.c +++ b/src/testing/testing_api_cmd_lock_product.c @@ -168,7 +168,7 @@ lock_product_cleanup (void *cls, * Offer internal data to other commands. * * @param cls closure - * @param ret[out] result (could be anything) + * @param[out] ret result (could be anything) * @param trait name of the trait * @param index index number of the object to extract. * @return #GNUNET_OK on success diff --git a/src/testing/testing_api_cmd_post_orders.c b/src/testing/testing_api_cmd_post_orders.c index 3adcf7d0..6977269d 100644 --- a/src/testing/testing_api_cmd_post_orders.c +++ b/src/testing/testing_api_cmd_post_orders.c @@ -144,7 +144,7 @@ struct OrdersState * Offer internal data to other commands. * * @param cls closure - * @param ret[out] result (could be anything) + * @param[out] ret result (could be anything) * @param trait name of the trait * @param index index number of the object to extract. * @return #GNUNET_OK on success @@ -632,7 +632,7 @@ mark_forgettable (void *cls, * @param refund_deadline the deadline for refunds on this order. * @param pay_deadline the deadline for payment on this order. * @param amount the amount this order is for. - * @param order[out] where to write the json string. + * @param[out] order where to write the json string. */ static void make_order_json (const char *order_id, |