diff options
| author | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-06-23 01:04:08 +0000 |
|---|---|---|
| committer | Jeffrey Seyfried <jeffrey.seyfried@gmail.com> | 2016-06-23 01:05:32 +0000 |
| commit | f6fe5b6a3e3daf4c10410aec3802576f08c6343f (patch) | |
| tree | 34df15e4560f160245ae3c37e7f97748fb86e683 /src/libsyntax | |
| parent | f0b21c2d1e21a6502098ff86773fd1b0bb39ce10 (diff) | |
| download | rust-f6fe5b6a3e3daf4c10410aec3802576f08c6343f.tar.gz rust-f6fe5b6a3e3daf4c10410aec3802576f08c6343f.zip | |
Cleanup comments
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 8 |
1 files 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<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)>), |
