From 79ef91e879d15bf13b8903379c36c08ad4788587 Mon Sep 17 00:00:00 2001 From: Michael Goulet Date: Wed, 31 Jul 2024 15:37:55 -0400 Subject: [PATCH] tweak comment on `NonterminalKind::Expr` Co-authored-by: Eric Holk --- compiler/rustc_parse/src/parser/nonterminal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_parse/src/parser/nonterminal.rs b/compiler/rustc_parse/src/parser/nonterminal.rs index 730b3a57142a2..54f4a4ead078c 100644 --- a/compiler/rustc_parse/src/parser/nonterminal.rs +++ b/compiler/rustc_parse/src/parser/nonterminal.rs @@ -48,7 +48,7 @@ impl<'a> Parser<'a> { } // Current edition expressions NonterminalKind::Expr(Expr) => { - // In Edition 2024, `_` will be considered an expression, so we + // In Edition 2024, `_` is considered an expression, so we // need to allow it here because `token.can_begin_expr()` does // not consider `_` to be an expression. //