Commit f2462a1c f2462a1c2892ffaad73ca256b66940dd19753810 by Sergey Poznyakoff

(util_token): Fixed comment.

1 parent cd508033
...@@ -58,7 +58,7 @@ util_getitem (char *s, const char *delim, char **save) ...@@ -58,7 +58,7 @@ util_getitem (char *s, const char *delim, char **save)
58 return strtok_r (s, delim, save); 58 return strtok_r (s, delim, save);
59 } 59 }
60 60
61 /* Stop a the first char that IMAP4 represent as a special characters. */ 61 /* Stop at the first char that represents an IMAP4 special character. */
62 int 62 int
63 util_token (char *buf, size_t len, char **ptr) 63 util_token (char *buf, size_t len, char **ptr)
64 { 64 {
......