Commit 53e14817 53e14817a7de9262d61981a86eb65fb2675f0e92 by Jordi Mallach Committed by Sergey Poznyakoff

Fix spelling errors

1 parent 5d4b76c5
...@@ -953,7 +953,7 @@ com_info (char *arg) ...@@ -953,7 +953,7 @@ com_info (char *arg)
953 953
954 if (!printed) 954 if (!printed)
955 { 955 {
956 printf ("No commands match `%s'. Possibilties are:\n", arg); 956 printf ("No commands match `%s'. Possibilities are:\n", arg);
957 957
958 for (i = 0; commands[i].name; i++) 958 for (i = 0; commands[i].name; i++)
959 { 959 {
......
...@@ -49,7 +49,7 @@ imap4d_uid (struct imap4d_session *session, ...@@ -49,7 +49,7 @@ imap4d_uid (struct imap4d_session *session,
49 rc = imap4d_search0 (tok, 1, &err_text); 49 rc = imap4d_search0 (tok, 1, &err_text);
50 else 50 else
51 { 51 {
52 err_text = "Uknown uid command"; 52 err_text = "Unknown uid command";
53 rc = RESP_BAD; 53 rc = RESP_BAD;
54 } 54 }
55 return io_completion_response (command, rc, "%s %s", cmd, err_text); 55 return io_completion_response (command, rc, "%s %s", cmd, err_text);
......
...@@ -121,7 +121,7 @@ struct mailvar_symbol mailvar_tab[] = ...@@ -121,7 +121,7 @@ struct mailvar_symbol mailvar_tab[] =
121 N_("input message is terminated with a dot alone on a line") }, 121 N_("input message is terminated with a dot alone on a line") },
122 { { "editheaders", }, 122 { { "editheaders", },
123 MAILVAR_TYPEMASK (mailvar_type_boolean), 123 MAILVAR_TYPEMASK (mailvar_type_boolean),
124 N_("allow to edit message headers while composing") }, 124 N_("allow editing message headers while composing") },
125 { { "emptystart", }, 125 { { "emptystart", },
126 MAILVAR_TYPEMASK (mailvar_type_boolean), 126 MAILVAR_TYPEMASK (mailvar_type_boolean),
127 N_("start interactive mode if the mailbox is empty") }, 127 N_("start interactive mode if the mailbox is empty") },
......
...@@ -226,7 +226,7 @@ shell_help (int argc, char **argv) ...@@ -226,7 +226,7 @@ shell_help (int argc, char **argv)
226 print_comtab (mu_strout, com); 226 print_comtab (mu_strout, com);
227 else 227 else
228 { 228 {
229 mu_printf ("No commands match `%s'. Possibilties are:\n", name); 229 mu_printf ("No commands match `%s'. Possibilities are:\n", name);
230 list_commands (shell_comtab, name); 230 list_commands (shell_comtab, name);
231 } 231 }
232 } 232 }
......