Cleanup comments

This commit is contained in:
Jeffrey Seyfried 2016-06-23 01:04:08 +00:00
parent f0b21c2d1e
commit f6fe5b6a3e

View File

@ -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<Local>),
/// An item binding
/// An item definition.
Item(P<Item>),
/// Expr without trailing semi-colon (must have unit type):
/// Expr without trailing semi-colon (must have unit type).
Expr(P<Expr>),
/// Expr with trailing semi-colon (may have any type):
/// Expr with trailing semi-colon (may have any type).
Semi(P<Expr>),
Mac(P<(Mac, MacStmtStyle, ThinAttributes)>),