changeset 366:f1e9da78c5dd

Typo fix in comment.
author Rob Landley <rob@landley.net>
date Tue, 05 Jan 2010 10:43:36 -0600
parents 8f0b24cc7cd7
children b8c8b4827e97
files lib/llist.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/llist.c	Tue Jan 05 10:41:52 2010 -0600
+++ b/lib/llist.c	Tue Jan 05 10:43:36 2010 -0600
@@ -35,7 +35,7 @@
 	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));