From c90bfb23adf10c0497b120a868df2d9bb8cafd86 Mon Sep 17 00:00:00 2001 From: brabo Date: Sun, 2 Jun 2019 14:32:50 +0200 Subject: gtk/fetch.c & monkey/filetype.c: small comment correction. --- frontends/gtk/fetch.c | 2 +- frontends/monkey/filetype.c | 2 +- 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++; -- cgit v1.2.3