Fix a comment.

This commit is contained in:
Nicholas Nethercote 2024-07-16 16:39:04 +10:00
parent 96b39f1204
commit 8cb6bc3b5a

View File

@ -1375,7 +1375,7 @@ impl<'a> Parser<'a> {
/// Parses things like parenthesized exprs, macros, `return`, etc. /// Parses things like parenthesized exprs, macros, `return`, etc.
/// ///
/// N.B., this does not parse outer attributes, and is private because it only works /// N.B., this does not parse outer attributes, and is private because it only works
/// correctly if called from `parse_dot_or_call_expr()`. /// correctly if called from `parse_expr_dot_or_call`.
fn parse_expr_bottom(&mut self) -> PResult<'a, P<Expr>> { fn parse_expr_bottom(&mut self) -> PResult<'a, P<Expr>> {
maybe_recover_from_interpolated_ty_qpath!(self, true); maybe_recover_from_interpolated_ty_qpath!(self, true);