gtk/fetch.c & monkey/filetype.c: small comment correction.

This commit is contained in:
brabo 2019-06-02 14:32:50 +02:00 committed by Michael Drake
parent fa64763b0d
commit c90bfb23ad
2 changed files with 2 additions and 2 deletions

View File

@ -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)) &&

View File

@ -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++;