diff --git a/src/util/list.h b/src/util/list.h index 6bc47e7..dcd2032 100644 --- a/src/util/list.h +++ b/src/util/list.h @@ -67,9 +67,8 @@ void append_list(list_t *list, void *element); */ int size_list(list_t *list); - /** -@brief Calles the supplied iterator function with the data element of each +@brief Calls the supplied iterator function with the data element of each node (iterates over the list). */ void for_each_list(list_t *list, listIterator iterator); @@ -79,7 +78,6 @@ void for_each_list(list_t *list, listIterator iterator); */ void head_list(list_t *list, void *element, bool removeFromList); - /** @brief Returns the tail of the list. */