aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/linked_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linked_list.c b/src/linked_list.c
index 6335c3d..2023c65 100644
--- a/src/linked_list.c
+++ b/src/linked_list.c
@@ -3,7 +3,7 @@
LinkedList *linked_list_new(void) {
/* Note that the members of the linked list
- * is initialized to 0 when using calloc() */
+ * are initialized to 0 when using calloc() */
LinkedList *ll = (LinkedList *)calloc(1, sizeof(LinkedList));
if (!ll)
return NULL;