From: gastal Date: Fri, 13 Jul 2012 17:27:24 +0000 (+0000) Subject: Small improvement to eina_hash_free_cb_set documentation. X-Git-Tag: submit/2.0alpha-wayland/20121127.222009~85 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6dc1afba7dc75dd687a223a8d07eb4e1b218a562;p=profile%2Fivi%2Feina.git Small improvement to eina_hash_free_cb_set documentation. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@73822 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- diff --git a/src/include/eina_hash.h b/src/include/eina_hash.h index df6a5a4..330c827 100644 --- a/src/include/eina_hash.h +++ b/src/include/eina_hash.h @@ -357,9 +357,13 @@ EAPI Eina_Hash *eina_hash_new(Eina_Key_Length key_length_cb, * @param hash The given hash table * @param data_free_cb The function called on each value when the hash * table is freed, or when an item is deleted from it. @c NULL can be passed as - * callback. + * callback to remove an existing callback. + * + * The argument received by @p data_free_cb will be that data of the item being + * removed. + * * @since 1.1 - * See @ref eina_hash_new. + * @see eina_hash_new. */ EAPI void eina_hash_free_cb_set(Eina_Hash *hash, Eina_Free_Cb data_free_cb) EINA_ARG_NONNULL(1);