about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-06-23 01:04:08 +0000
committerJeffrey Seyfried <jeffrey.seyfried@gmail.com>2016-06-23 01:05:32 +0000
commitf6fe5b6a3e3daf4c10410aec3802576f08c6343f (patch)
tree34df15e4560f160245ae3c37e7f97748fb86e683 /src/libsyntax
parentf0b21c2d1e21a6502098ff86773fd1b0bb39ce10 (diff)
downloadrust-f6fe5b6a3e3daf4c10410aec3802576f08c6343f.tar.gz
rust-f6fe5b6a3e3daf4c10410aec3802576f08c6343f.zip
Cleanup comments
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs8
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)>),