summaryrefslogtreecommitdiff
path: root/include/al
diff options
context:
space:
mode:
Diffstat (limited to 'include/al')
-rw-r--r--include/al/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/al/list.h b/include/al/list.h
index 41b1b2b..f6a1181 100644
--- a/include/al/list.h
+++ b/include/al/list.h
@@ -109,11 +109,11 @@
#define al_list_nth(name, list, n) list_nth_##name(list, n)
#define al_list_last(name, list) list_last_##name(list)
-// If `list` is `NULL`, a new list is created.
+// If list is NULL, a new list is created.
#define al_list_append(name, list, value) list_append_##name(list, value)
#define al_list_prepend(name, list, value) list_prepend_##name(list, value)
-// If `sibiling->next` is `NULL` (or just `sibiling` for before) append the value to the end of the list.
+// If sibiling->next is NULL (or just sibiling for before) append the value to the end of the list.
#define al_list_insert_after(name, list, sibling, value) list_insert_after_##name(list, sibling, value)
#define al_list_insert_before(name, list, sibling, value) list_insert_before_##name(list, sibling, value)