This commit is contained in:
Samuel Moelius 2024-08-18 13:14:09 -04:00 committed by GitHub
parent f04f6ca36d
commit dc4766536b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1395,7 +1395,7 @@ pub struct LetExpr<'hir> {
pub pat: &'hir Pat<'hir>,
pub ty: Option<&'hir Ty<'hir>>,
pub init: &'hir Expr<'hir>,
/// `Recovered::Yes` when this let expressions is not in a syntanctically valid location.
/// `Recovered::Yes` when this let expressions is not in a syntactically valid location.
/// Used to prevent building MIR in such situations.
pub recovered: ast::Recovered,
}