Skip to content

Commit 393f80e

Browse files
committed
minor
1 parent 12103b1 commit 393f80e

File tree

1 file changed

+1
-1
lines changed
  • crates/parser/src/grammar/expressions

1 file changed

+1
-1
lines changed

crates/parser/src/grammar/expressions/atom.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ pub(super) const ATOM_EXPR_FIRST: TokenSet =
5959
LIFETIME_IDENT,
6060
]));
6161

62-
const EXPR_RECOVERY_SET: TokenSet = TokenSet::new(&[LET_KW, R_DOLLAR]);
62+
const EXPR_RECOVERY_SET: TokenSet = TokenSet::new(&[T![let], R_DOLLAR]);
6363

6464
pub(super) fn atom_expr(p: &mut Parser, r: Restrictions) -> Option<(CompletedMarker, BlockLike)> {
6565
if let Some(m) = literal(p) {

0 commit comments

Comments
 (0)