diff --git a/parser/lib.c b/parser/lib.c index 11c221075..a105fa379 100644 --- a/parser/lib.c +++ b/parser/lib.c @@ -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; }