X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Flist%2Flist.h;h=a15321c59095ef78b043c898e6f4908c131a7256;hb=e4142e580c36230a1e5137f8a5f5a5cc01a57a1e;hp=a6b00385984c52ce9ab3a614e351437616f69b8e;hpb=5dbd87b876434dd703dfcc30cb0503118aac2076;p=ccan diff --git a/ccan/list/list.h b/ccan/list/list.h index a6b00385..a15321c5 100644 --- a/ccan/list/list.h +++ b/ccan/list/list.h @@ -708,7 +708,7 @@ static inline void list_prepend_list_(struct list_head *to, /** * list_for_each_off - iterate through a list of memory regions. * @h: the list_head - * @i: the pointer to a memory region wich contains list node data. + * @i: the pointer to a memory region which contains list node data. * @off: offset(relative to @i) at which list node data resides. * * This is a low-level wrapper to iterate @i over the entire list, used to @@ -740,7 +740,7 @@ static inline void list_prepend_list_(struct list_head *to, /** * list_for_each_rev_off - iterate through a list of memory regions backwards * @h: the list_head - * @i: the pointer to a memory region wich contains list node data. + * @i: the pointer to a memory region which contains list node data. * @off: offset(relative to @i) at which list node data resides. * * See list_for_each_off for details @@ -752,7 +752,7 @@ static inline void list_prepend_list_(struct list_head *to, * list_for_each_safe_off - iterate through a list of memory regions, maybe * during deletion * @h: the list_head - * @i: the pointer to a memory region wich contains list node data. + * @i: the pointer to a memory region which contains list node data. * @nxt: the structure containing the list_node * @off: offset(relative to @i) at which list node data resides. * @@ -771,7 +771,7 @@ static inline void list_prepend_list_(struct list_head *to, * list_for_each_rev_safe_off - iterate backwards through a list of * memory regions, maybe during deletion * @h: the list_head - * @i: the pointer to a memory region wich contains list node data. + * @i: the pointer to a memory region which contains list node data. * @nxt: the structure containing the list_node * @off: offset(relative to @i) at which list node data resides. *