diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index a837ae167a3..21704206cbf 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1115,7 +1115,7 @@ pub enum ExprKind { Cast(P, P), /// A type ascription (e.g., `42: usize`). Type(P, P), - /// A `let pats = expr` pseudo-expression that only occurs in the condition + /// A `let pats = expr` expression that is only semantically allowed in the condition /// of `if` / `while` expressions. (e.g., `if let 0 = x { .. }`). /// /// The `Vec>` is for or-patterns at the top level.