summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorbrabo <brabo@cryptolab.net>2019-06-02 14:32:50 +0200
committerMichael Drake <michael.drake@codethink.co.uk>2019-08-01 10:42:08 +0100
commitc90bfb23adf10c0497b120a868df2d9bb8cafd86 (patch)
tree9b09fe9757001a680596c0f76b22b4439276a558 /frontends
parentfa64763b0d8c6566eda5f6547e7f2f3e62b77613 (diff)
downloadnetsurf-c90bfb23adf10c0497b120a868df2d9bb8cafd86.tar.gz
netsurf-c90bfb23adf10c0497b120a868df2d9bb8cafd86.tar.bz2
gtk/fetch.c & monkey/filetype.c: small comment correction.
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++;