diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index e55c2645e6e..8393ae63631 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -801,16 +801,16 @@ impl fmt::Debug for Stmt { #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash)] pub enum StmtKind { - /// A local (let) binding: + /// A local (let) binding. Local(P), - /// An item binding + /// An item definition. Item(P), - /// Expr without trailing semi-colon (must have unit type): + /// Expr without trailing semi-colon (must have unit type). Expr(P), - /// Expr with trailing semi-colon (may have any type): + /// Expr with trailing semi-colon (may have any type). Semi(P), Mac(P<(Mac, MacStmtStyle, ThinAttributes)>),