Fix spelling mistakes

This commit is contained in:
Eric Engestrom 2016-04-02 16:00:05 +01:00
parent 0d4c31edcd
commit 3e8081514d
8 changed files with 16 additions and 16 deletions

View file

@ -342,7 +342,7 @@ char *cmdsep(char **stringp, const char *delim) {
char *head = *stringp + strspn(*stringp, delim);
// Find end token
char *tail = *stringp += strcspn(*stringp, delim);
// Set stringp to begining of next token
// Set stringp to beginning of next token
*stringp += strspn(*stringp, delim);
// Set stringp to null if last token
if (!**stringp) *stringp = NULL;