Assorted spelling fixes.

diff --git a/dlls/kernel/debugger.c b/dlls/kernel/debugger.c
index dd2e015..a35ac5f 100644
--- a/dlls/kernel/debugger.c
+++ b/dlls/kernel/debugger.c
@@ -210,7 +210,7 @@
 /***********************************************************************
  *           OutputDebugStringA   (KERNEL32.@)
  *
- *  Output by an application of a unicode string to a debugger (if attached)
+ *  Output by an application of an ascii string to a debugger (if attached)
  *  and program log.
  */
 void WINAPI OutputDebugStringA(
@@ -231,7 +231,7 @@
 /***********************************************************************
  *           OutputDebugStringW   (KERNEL32.@)
  *
- *  Output by an appliccation of a unicode string to a debugger (if attached)
+ *  Output by an application of a unicode string to a debugger (if attached)
  *  and program log.
  */
 void WINAPI OutputDebugStringW(
@@ -359,7 +359,7 @@
 /***********************************************************************
  *           DebugSetProcessKillOnExit                    (KERNEL32.@)
  *
- * Let a debugger decide wether a debuggee will be killed upon debugger
+ * Let a debugger decide whether a debuggee will be killed upon debugger
  * termination
  */
 BOOL WINAPI DebugSetProcessKillOnExit(BOOL kill)
diff --git a/dlls/kernel/editline.c b/dlls/kernel/editline.c
index 88ee70b..28f7416 100644
--- a/dlls/kernel/editline.c
+++ b/dlls/kernel/editline.c
@@ -189,10 +189,10 @@
         /* erase til eol on first line */
         CONSOLE_FillLineUniform(ctx->hConOut, cbeg.X, cbeg.Y,
                                 ctx->csbi.dwSize.X - cbeg.X, &ci);
-        /* completly erase all the others (full lines) */
+        /* completely erase all the others (full lines) */
         for (i = cbeg.Y + 1; i < cend.Y; i++)
             CONSOLE_FillLineUniform(ctx->hConOut, 0, i, ctx->csbi.dwSize.X, &ci);
-        /* erase from beg of line until last pos on last line */
+        /* erase from begining of line until last pos on last line */
         CONSOLE_FillLineUniform(ctx->hConOut, 0, cend.Y, cend.X, &ci);
     }
     ctx->len -= str_len;