From d1417d67aeace547abaeee6766911a4e734526b3 Mon Sep 17 00:00:00 2001 From: agiersch Date: Thu, 24 Mar 2011 14:58:24 +0000 Subject: [PATCH] Fix documentation for xbt_dict_set. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9852 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- src/xbt/dict.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/xbt/dict.c b/src/xbt/dict.c index 7518075157..7f1c91a3c3 100644 --- a/src/xbt/dict.c +++ b/src/xbt/dict.c @@ -223,8 +223,8 @@ static void xbt_dict_rehash(xbt_dict_t dict) * \param key the key to set the new data * \param key_len the size of the \a key * \param data the data to add in the dict - * \param free_ctn function to call with (\a key as argument) when - * \a key is removed from the dictionary + * \param free_ctn function to call with (\a data as argument) when + * \a data is removed from the dictionary * * Set the \a data in the structure under the \a key, which can be any kind * of data, as long as its length is provided in \a key_len. @@ -281,8 +281,8 @@ XBT_INLINE void xbt_dict_set_ext(xbt_dict_t dict, * \param dict the dict * \param key the key to set the new data * \param data the data to add in the dict - * \param free_ctn function to call with (\a key as argument) when - * \a key is removed from the dictionary + * \param free_ctn function to call with (\a data as argument) when + * \a data is removed from the dictionary * * set the \a data in the structure under the \a key, which is a * null terminated string. -- 2.20.1