From a2720ade352fc3ec7a9eaf4b68ef65de7caf7d85 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 31 Jul 2012 08:41:32 +0000 Subject: [PATCH] eina: fix documentation. SVN revision: 74624 --- legacy/eina/src/include/eina_hash.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/legacy/eina/src/include/eina_hash.h b/legacy/eina/src/include/eina_hash.h index 330c827af3..2ba0851a31 100644 --- a/legacy/eina/src/include/eina_hash.h +++ b/legacy/eina/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);