]> mj.ucw.cz Git - libucw.git/commitdiff
Libucw: Spelling.
authorMartin Mares <mj@ucw.cz>
Thu, 3 Jul 2008 19:37:51 +0000 (21:37 +0200)
committerMartin Mares <mj@ucw.cz>
Fri, 4 Jul 2008 20:58:55 +0000 (22:58 +0200)
lib/conf-intr.c

index d27b909d4f0caa67b10a198ee5a918295006f745..407861d0ad1490f0a72655ef3414398324cdd718 100644 (file)
@@ -168,21 +168,21 @@ add_to_list(cnode *where, cnode *new_node, enum cf_operation op)
 {
   switch (op)
   {
-    case OP_EDIT:              // edition has been done in-place
+    case OP_EDIT:              // editation has been done in-place
       break;
     case OP_REMOVE:
       CF_JOURNAL_VAR(where->prev->next);
       CF_JOURNAL_VAR(where->next->prev);
       clist_remove(where);
       break;
-    case OP_AFTER:             // implementation dependend (prepend_head = after(list)), and where==list, see clists.h:74
+    case OP_AFTER:             // implementation dependent (prepend_head = after(list)), and where==list, see clists.h:74
     case OP_PREPEND:
     case OP_COPY:
       CF_JOURNAL_VAR(where->next->prev);
       CF_JOURNAL_VAR(where->next);
       clist_insert_after(new_node, where);
       break;
-    case OP_BEFORE:            // implementation dependend (append_tail = before(list))
+    case OP_BEFORE:            // implementation dependent (append_tail = before(list))
     case OP_APPEND:
     case OP_SET:
       CF_JOURNAL_VAR(where->prev->next);