Commit 1f2b71f0 1f2b71f0d1e31398b4348c2df13d6fd04830b0e5 by Sergey Poznyakoff

typos in comment

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