eina_list.h: fixed documentation source formatting while reading the code.

This commit is contained in:
Daniel Juyung Seo 2013-05-23 20:26:44 +09:00
parent 3c618e54a1
commit 3c9856f9e0
1 changed files with 37 additions and 35 deletions

View File

@ -1518,7 +1518,8 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA
* // EINA_LIST_FOREACH_SAFE will be used to free elements that match "key".
*
* EINA_LIST_FOREACH_SAFE(list, l, l_next, data)
* if (strcmp(data, "key") == 0) {
* if (strcmp(data, "key") == 0)
* {
* free(data);
* list = eina_list_remove_list(list, l);
* }
@ -1574,7 +1575,8 @@ EAPI Eina_Accessor *eina_list_accessor_new(const Eina_List *list) EINA_MA
* // EINA_LIST_REVERSE_FOREACH_SAFE will be used to free elements that match "key".
*
* EINA_LIST_REVERSE_FOREACH_SAFE(list, l, l_prev, data)
* if (strcmp(data, "key") == 0) {
* if (strcmp(data, "key") == 0)
* {
* free(data);
* list = eina_list_remove_list(list, l);
* }