summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2017-07-23 19:40:00 +0200
committerRichard Braun <rbraun@sceen.net>2017-07-23 19:40:00 +0200
commit1e2875fda735154d5fdb01894c674e0e44dcee49 (patch)
tree4cba48f0be5e614901e155137addff9c3e5d2ebd
parented1df95f917553e50603fc6b804bcfecf575ac60 (diff)
list: fix typo
-rw-r--r--list.h4
1 files 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)