summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
Diffstat (limited to 'frontends')
-rw-r--r--frontends/gtk/fetch.c2
-rw-r--r--frontends/monkey/filetype.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/frontends/gtk/fetch.c b/frontends/gtk/fetch.c
index b05c1bd95..e1550ffe8 100644
--- a/frontends/gtk/fetch.c
+++ b/frontends/gtk/fetch.c
@@ -117,7 +117,7 @@ void gtk_fetch_filetype_init(const char *mimefile)
type = ptr;
- /* search for the first non-whitespace char or NUL or
+ /* search for the first whitespace char or NUL or
* NL */
while (*ptr &&
(!ascii_is_space(*ptr)) &&
diff --git a/frontends/monkey/filetype.c b/frontends/monkey/filetype.c
index f0f22d00c..af93ef607 100644
--- a/frontends/monkey/filetype.c
+++ b/frontends/monkey/filetype.c
@@ -110,7 +110,7 @@ void monkey_fetch_filetype_init(const char *mimefile)
type = ptr;
- /* search for the first non-whitespace char or NUL or
+ /* search for the first whitespace char or NUL or
* NL */
while (*ptr && (!ascii_is_space(*ptr)) && *ptr != '\n')
ptr++;