Fix comment typo in parser/lib.c

This commit is contained in:
Christian Boltz 2021-12-05 18:16:53 +01:00
parent 21e5a721ab
commit 854cbae52e
Failed to generate hash of commit

View file

@ -183,7 +183,7 @@ int strn_escseq(const char **pos, const char *chrs, size_t n)
if (strchr(chrs, c))
return c;
/* unsupported escap sequence, backup to return that char */
/* unsupported escape sequence, backup to return that char */
pos--;
return -1;
}