ucx/list.c

changeset 31
91ac86557290
parent 27
22644e2572bc
child 35
fdabd1240b69
--- a/ucx/list.c	Fri Feb 24 15:53:50 2012 +0100
+++ b/ucx/list.c	Fri May 25 17:39:27 2012 +0200
@@ -118,7 +118,7 @@
         while (f->next != NULL && f->next != e) {
             f = f->next;
         }
-        /* perform remove iff this element is found in this list */
+        /* perform remove if this element is found in this list */
         if (f->next == e) {
             f->next = e->next;
             free(e);

mercurial