summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas M. Gastal <jgastal@profusion.mobi>2012-07-13 17:27:24 +0000
committerJonas M. Gastal <jgastal@profusion.mobi>2012-07-13 17:27:24 +0000
commit62c1a18f27d9954f5f622edb99edb8dbc25ade15 (patch)
tree27003c691fa6096e3f47238f4defbe541e9a4e3e
parentff459842c1936bdac63656f02c9007687cb8114e (diff)
downloadeina-62c1a18f27d9954f5f622edb99edb8dbc25ade15.tar.gz
Small improvement to eina_hash_free_cb_set documentation.
SVN revision: 73822
-rw-r--r--src/include/eina_hash.h8
1 files changed, 6 insertions, 2 deletions
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);