about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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)>),