about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Src/linklist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/linklist.c b/Src/linklist.c
index c5a2e2b1a..35233f549 100644
--- a/Src/linklist.c
+++ b/Src/linklist.c
@@ -131,7 +131,7 @@ insertlinklist(LinkList l, LinkNode where, LinkList x)
 	x->last = l->last;
 }
 
-/* Get top node in a linked list */
+/* Pop the top node off a linked list and free it. */
 
 /**/
 mod_export void *
@@ -152,7 +152,7 @@ getlinknode(LinkList list)
     return dat;
 }
 
-/* Get top node in a linked list without freeing */
+/* Pop the top node off a linked list without freeing it. */
 
 /**/
 mod_export void *