From 1e2875fda735154d5fdb01894c674e0e44dcee49 Mon Sep 17 00:00:00 2001 From: Richard Braun Date: Sun, 23 Jul 2017 19:40:00 +0200 Subject: list: fix typo --- list.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/list.h b/list.h index 12fe454..a041964 100644 --- a/list.h +++ b/list.h @@ -82,7 +82,7 @@ list_init(struct list *list) /* * Initialize a list node. * - * An entry is in no lists when its node members point to NULL. + * A node is in no list when its node members point to NULL. */ static inline void list_node_init(struct list *node) @@ -92,7 +92,7 @@ list_node_init(struct list *node) } /* - * Return true if node is in no lists. + * Return true if node is in no list. */ static inline bool list_node_unlinked(const struct list *node) -- cgit v1.2.3