summaryrefslogtreecommitdiffstats
path: root/init.c
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-07-23 14:07:04 +0200
committerOndřej Bílka <neleai@seznam.cz>2013-07-23 14:07:04 +0200
commitfd1b65cbb2a0d6c1b52b30e3b9010ead734c0cc1 (patch)
tree03c14f393279ccbd185179cc38522126fb1725ab /init.c
parent3e4064102fde1d92c501a19174b9a250dd99408c (diff)
fix typos in comments
Diffstat (limited to 'init.c')
-rw-r--r--init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.c b/init.c
index a3ec2325..0c73d575 100644
--- a/init.c
+++ b/init.c
@@ -259,7 +259,7 @@ int mutt_extract_token (BUFFER *dest, BUFFER *tok, int flags)
safe_fclose (&fp);
mutt_wait_filter (pid);
- /* if we got output, make a new string consiting of the shell ouptput
+ /* if we got output, make a new string consiting of the shell output
plus whatever else was left on the original line */
/* BUT: If this is inside a quoted string, directly add output to
* the token */
@@ -2468,7 +2468,7 @@ int mutt_command_complete (char *buffer, size_t len, int pos, int numtabs)
if (Completed[0] == 0 && User_typed[0])
return 0;
- /* Num_matched will _always_ be atleast 1 since the initial
+ /* Num_matched will _always_ be at least 1 since the initial
* user-typed string is always stored */
if (numtabs == 1 && Num_matched == 2)
snprintf(Completed, sizeof(Completed),"%s", Matches[0]);
@@ -2524,7 +2524,7 @@ int mutt_command_complete (char *buffer, size_t len, int pos, int numtabs)
if (Completed[0] == 0 && User_typed[0])
return 0;
- /* Num_matched will _always_ be atleast 1 since the initial
+ /* Num_matched will _always_ be at least 1 since the initial
* user-typed string is always stored */
if (numtabs == 1 && Num_matched == 2)
snprintf(Completed, sizeof(Completed),"%s", Matches[0]);
@@ -2571,7 +2571,7 @@ int mutt_command_complete (char *buffer, size_t len, int pos, int numtabs)
if (Completed[0] == 0 && User_typed[0])
return 0;
- /* Num_matched will _always_ be atleast 1 since the initial
+ /* Num_matched will _always_ be at least 1 since the initial
* user-typed string is always stored */
if (numtabs == 1 && Num_matched == 2)
snprintf(Completed, sizeof(Completed),"%s", Matches[0]);