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

Co-authored-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
(cherry picked from commit 3bcd5624be)
This commit is contained in:
Eisuke Kawashima
2024-08-28 11:37:27 +09:00
committed by github-actions[bot]
parent a6b2233c3e
commit b18538527e

View File

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