eina: fix documentation.
authorcedric <cedric>
Tue, 31 Jul 2012 08:41:32 +0000 (08:41 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 31 Jul 2012 08:41:32 +0000 (08:41 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@74624 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/include/eina_hash.h

index 330c827..2ba0851 100644 (file)
@@ -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);