gtk/fetch.c & monkey/filetype.c: small comment correction.
This commit is contained in:
parent
fa64763b0d
commit
c90bfb23ad
|
@ -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)) &&
|
||||
|
|
|
@ -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++;
|
||||
|
|
Loading…
Reference in New Issue