diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-07-05 13:35:47 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-07-05 13:35:47 +0200 |
commit | a104914e4d209d9c2d94a8f4e943dd29e739158a (patch) | |
tree | 14b8bd9e3dba7db7a96241ca98a24f908a3f277b /src/include | |
parent | 01551b0d9d4fe23b66e5adf4cfa2485fe202c3c9 (diff) |
-doxygen fixes
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_mint_service.h | 7 | ||||
-rw-r--r-- | src/include/taler_mintdb_plugin.h | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/src/include/taler_mint_service.h b/src/include/taler_mint_service.h index 2fa19434e..132dfa31d 100644 --- a/src/include/taler_mint_service.h +++ b/src/include/taler_mint_service.h @@ -532,10 +532,10 @@ TALER_MINT_withdraw_status (struct TALER_MINT_Handle *mint, * Cancel a withdraw status request. This function cannot be used * on a request handle if a response is already served for it. * - * @param status the withdraw status request handle + * @param wsh the withdraw status request handle */ void -TALER_MINT_withdraw_status_cancel (struct TALER_MINT_WithdrawStatusHandle *status); +TALER_MINT_withdraw_status_cancel (struct TALER_MINT_WithdrawStatusHandle *wsh); /* ********************* /withdraw/sign *********************** */ @@ -574,6 +574,7 @@ typedef void * * @param mint the mint handle; the mint must be ready to operate * @param pk kind of coin to create + * @param reserve_priv private key of the reserve to withdraw from * @param coin_priv where to store the coin's private key, * caller must have committed this value to disk before the call (with @a pk) * @param blinding_key where to store the coin's blinding key @@ -660,7 +661,7 @@ TALER_MINT_admin_add_incoming (struct TALER_MINT_Handle *mint, * Cancel an add incoming. This function cannot be used on a request * handle if a response is already served for it. * - * @param sign the admin add incoming request handle + * @param aai the admin add incoming request handle */ void TALER_MINT_admin_add_incoming_cancel (struct TALER_MINT_AdminAddIncomingHandle *aai); diff --git a/src/include/taler_mintdb_plugin.h b/src/include/taler_mintdb_plugin.h index d7f0f99cd..af5f2c196 100644 --- a/src/include/taler_mintdb_plugin.h +++ b/src/include/taler_mintdb_plugin.h @@ -651,12 +651,12 @@ struct TALER_MINTDB_Plugin * Start a transaction. * * @param cls the @e cls of this struct with the plugin-specific state - * @param sesssion connection to use + * @param session connection to use * @return #GNUNET_OK on success */ int (*start) (void *cls, - struct TALER_MINTDB_Session *sesssion); + struct TALER_MINTDB_Session *session); /** |