From 854cbae52ea3debcf2b8ec73eb2e7c066ac31a75 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Sun, 5 Dec 2021 18:16:53 +0100 Subject: [PATCH] Fix comment typo in parser/lib.c --- parser/lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }