From: Andre Noll Date: Thu, 20 May 2021 18:37:44 +0000 (+0200) Subject: list.h: Fix parameter doc of iterators. X-Git-Tag: v0.7.0~18^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=c0e4799bafc72ffdb7e8912317b8f74acbbc2736 list.h: Fix parameter doc of iterators. --- diff --git a/list.h b/list.h index 9056f1f7..ddcb69da 100644 --- a/list.h +++ b/list.h @@ -125,7 +125,7 @@ static inline int list_is_singular(const struct list_head *head) /** * Iterate over a list. * - * \param pos A list head pointer which serves as the iterator. + * \param pos A struct pointer which serves as the iterator. * \param head The head of the list. * \param member The name of the list head member within the structure. */ @@ -137,8 +137,8 @@ static inline int list_is_singular(const struct list_head *head) /** * Iterate over list, safe against removal of list entry. * - * \param pos The iterator. - * \param n A list head pointer which is used as temporary storage. + * \param pos The iterator struct pointer. + * \param n A second struct pointer which is used as temporary storage. * \param head The head of the list. * \param member The name of the list head member within the structure. */