From 5e7589668e822caef13b73c1d183db729a9c457d Mon Sep 17 00:00:00 2001
From: brabo <brabo@cryptolab.net>
Date: Sun, 2 Jun 2019 14:32:50 +0200
Subject: [PATCH] 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++;
-- 
2.20.1

