From f6fe5b6a3e3daf4c10410aec3802576f08c6343f Mon Sep 17 00:00:00 2001 From: Jeffrey Seyfried Date: Thu, 23 Jun 2016 01:04:08 +0000 Subject: [PATCH] Cleanup comments --- src/libsyntax/ast.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)>),