Typo fix in comment.
authorRob Landley <rob@landley.net>
Tue, 5 Jan 2010 16:43:36 +0000 (10:43 -0600)
committerRob Landley <rob@landley.net>
Tue, 5 Jan 2010 16:43:36 +0000 (10:43 -0600)
lib/llist.c

index 9adb64e..c6e7da3 100644 (file)
@@ -35,7 +35,7 @@ void *llist_pop(void *list)
        return (void *)next;
 }
 
-// Add an entry to the end off a doubly linked list
+// Add an entry to the end of a doubly linked list
 struct double_list *dlist_add(struct double_list **list, char *data)
 {
        struct double_list *line = xmalloc(sizeof(struct double_list));