Skip to content

Commit f6fe5b6

Browse files
committed
Cleanup comments
1 parent f0b21c2 commit f6fe5b6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libsyntax/ast.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -801,16 +801,16 @@ impl fmt::Debug for Stmt {
801801

802802
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash)]
803803
pub enum StmtKind {
804-
/// A local (let) binding:
804+
/// A local (let) binding.
805805
Local(P<Local>),
806806

807-
/// An item binding
807+
/// An item definition.
808808
Item(P<Item>),
809809

810-
/// Expr without trailing semi-colon (must have unit type):
810+
/// Expr without trailing semi-colon (must have unit type).
811811
Expr(P<Expr>),
812812

813-
/// Expr with trailing semi-colon (may have any type):
813+
/// Expr with trailing semi-colon (may have any type).
814814
Semi(P<Expr>),
815815

816816
Mac(P<(Mac, MacStmtStyle, ThinAttributes)>),

0 commit comments

Comments
 (0)