Commit 1f2b71f0 1f2b71f0d1e31398b4348c2df13d6fd04830b0e5 by Sergey Poznyakoff

typos in comment

1 parent 1d1cbf3e
...@@ -30,10 +30,10 @@ imap4d_logout (struct imap4d_command *command, char *arg) ...@@ -30,10 +30,10 @@ imap4d_logout (struct imap4d_command *command, char *arg)
30 if (util_getword (arg, &sp)) 30 if (util_getword (arg, &sp))
31 return util_finish (command, RESP_BAD, "Too many args"); 31 return util_finish (command, RESP_BAD, "Too many args");
32 util_finish (command, RESP_OK, "Completed"); 32 util_finish (command, RESP_OK, "Completed");
33 /* Even if a mailbox is slected, a SLECT EXAMINE or LOGOUT 33 /* Even if a mailbox is selected, a SELECT, EXAMINE or LOGOUT
34 command MAY be issued without previously issuing a CLOSE command. 34 command MAY be issued without previously issuing a CLOSE command.
35 The SELECT, EXAMINE, and LOGUT commands implictly close the 35 The SELECT, EXAMINE, and LOGOUT commands implictly close the
36 currently selected mailbox withut doing an expunge. */ 36 currently selected mailbox without doing an expunge. */
37 if (mbox) 37 if (mbox)
38 { 38 {
39 mailbox_close (mbox); 39 mailbox_close (mbox);
......