summaryrefslogtreecommitdiffstats
path: root/list.c
diff options
context:
space:
mode:
Diffstat (limited to 'list.c')
-rw-r--r--list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/list.c b/list.c
index 6c59006..2f616e8 100644
--- a/list.c
+++ b/list.c
@@ -4,7 +4,7 @@
/* ########################################################### */
/* ********************************************************************* */
-/* Tiny list immplementation. */
+/* Tiny linked list implementation. */
/* */
/* Each node contain a void pointer to some opaque data, these functions */
/* will not try to allocate or free this data pointer. */
@@ -130,7 +130,7 @@ ll_prepend(ll_t * const list, void * const data)
/* ======================================================= */
/* Insert a new node before the specified node in the list */
-/* TODO test it */
+/* TODO test it */
/* ======================================================= */
void
ll_insert_before(ll_t * const list, ll_node_t * node, void * const data)