From 978892c1eaec9ce7fd46fdbb4a4d9f39ad283a8b Mon Sep 17 00:00:00 2001 From: caro Date: Sun, 2 Nov 2008 09:41:14 +0000 Subject: [PATCH] small doc fix git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@37407 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/include/eina_list.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/eina_list.h b/src/include/eina_list.h index 9268863..254b055 100644 --- a/src/include/eina_list.h +++ b/src/include/eina_list.h @@ -110,12 +110,12 @@ EAPI Eina_Iterator *eina_list_iterator_new(const Eina_List *list); EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list); /** - * @def EINA_LIST_ITER_NEXT + * @def EINA_LIST_FOREACH * @brief Macro to iterate over a list easily. * * @param list The list to iterate over. * @param l A list that is used as loop index. - * @param data The data + * @param data The data. * * This macro allow the iteration over @p list in an easy way. It * iterates from the first element to the last one. @p data is the @@ -132,9 +132,9 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list); * * // list is already filled, * // its elements are just duplicated strings, - * // EINA_LIST_ITER_NEXT will be used to free those strings + * // EINA_LIST_FOREACH will be used to free those strings * - * EINA_LIST_ITER_NEXT(list, l, data) + * EINA_LIST_FOREACH(list, l, data) * free(data); * @endcode */ -- 2.7.4