From ad4bdeba48faaaba5303d1c68aeb63159522ecd5 Mon Sep 17 00:00:00 2001 From: cedric Date: Tue, 31 Jul 2012 08:41:32 +0000 Subject: [PATCH] eina: fix documentation. git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@74624 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/include/eina_hash.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/include/eina_hash.h b/src/include/eina_hash.h index 330c827..2ba0851 100644 --- a/src/include/eina_hash.h +++ b/src/include/eina_hash.h @@ -298,19 +298,19 @@ struct _Eina_Hash_Tuple typedef unsigned int (*Eina_Key_Length)(const void *key); /** * @def EINA_KEY_LENGTH - * @param Function The function used to hash calculation. + * @param Function The function used to calculate length of hash key. */ #define EINA_KEY_LENGTH(Function) ((Eina_Key_Length)Function) typedef int (*Eina_Key_Cmp)(const void *key1, int key1_length, const void *key2, int key2_length); /** * @def EINA_KEY_CMP - * @param Function The function used to hash calculation. + * @param Function The function used to compare hash key. */ #define EINA_KEY_CMP(Function) ((Eina_Key_Cmp)Function) typedef int (*Eina_Key_Hash)(const void *key, int key_length); /** * @def EINA_KEY_HASH - * @param Function The function used to hash calculation. + * @param Function The function used to hash key. */ #define EINA_KEY_HASH(Function) ((Eina_Key_Hash)Function) typedef Eina_Bool (*Eina_Hash_Foreach)(const Eina_Hash *hash, const void *key, void *data, void *fdata); -- 2.7.4