summaryrefslogtreecommitdiffstats
path: root/list.c
diff options
context:
space:
mode:
authorpgen <p.gen.progs@gmail.com>2019-03-11 18:48:42 +0100
committerpgen <p.gen.progs@gmail.com>2019-03-17 20:46:05 +0100
commita0b10c4fe214d5767bf0143f9d39f486b65e77ac (patch)
tree3bd7f8e870e3e14e2681111343b8eddff20e3597 /list.c
parentb30b7afbbb527392a1f1654fa9e0d52f3757392a (diff)
Fix typos
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)