fix(regexp): fix typo in E888 error message (#30161)

Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
This commit is contained in:
Eisuke Kawashima 2024-08-28 11:37:27 +09:00 committed by GitHub
parent dad55f5e76
commit 3bcd5624be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10166,7 +10166,7 @@ static int nfa_regatom(void)
case 'e':
EMIT(NFA_ZEND);
rex.nfa_has_zend = true;
if (!re_mult_next("\\zs")) {
if (!re_mult_next("\\ze")) {
return false;
}
break;