From: Michael Beck Date: Mon, 24 Oct 2005 13:24:04 +0000 (+0000) Subject: doxygen docu fixed X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=6bc93ec3d96a044a7c3cddf89e86a7c319cef1cb;p=libfirm doxygen docu fixed [r6789] --- diff --git a/ir/adt/list.h b/ir/adt/list.h index 034f467ae..2f8a267e4 100644 --- a/ir/adt/list.h +++ b/ir/adt/list.h @@ -55,8 +55,8 @@ static INLINE void __list_add(struct list_head *new_node, /** * list_add - add a new entry - * @param new new entry to be added - * @param head list head to add it after + * @param new_node new entry to be added + * @param head list head to add it after * * Insert a new entry after the specified head. * This is good for implementing stacks. @@ -68,8 +68,8 @@ static INLINE void list_add(struct list_head *new_node, struct list_head *head) /** * list_add_tail - add a new entry - * @param new new entry to be added - * @param head list head to add it before + * @param new_node new entry to be added + * @param head list head to add it before * * Insert a new entry before the specified head. * This is useful for implementing queues. @@ -176,11 +176,11 @@ static INLINE void list_splice(struct list_head *list, struct list_head *head) } /** - * list_splice_init - join two lists and reinitialise the emptied list. + * list_splice_init - join two lists and reinitialize the emptied list. * @param list the new list to add. * @param head the place to add it in the first list. * - * The list at @list is reinitialised + * The list at list is reinitialized */ static INLINE void list_splice_init(struct list_head *list, struct list_head *head)