From 3333262f05aef40c1403f15b22fcf0356d60085b Mon Sep 17 00:00:00 2001 From: Zaki Manian Date: Sun, 3 Sep 2017 12:27:31 -0700 Subject: [PATCH 1/2] Minor documentation improvements for StmtKind --- src/libsyntax/ast.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 720f6cd32bdf8..2b13bd9c410d5 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -761,9 +761,9 @@ pub enum StmtKind { /// Expr without trailing semi-colon. Expr(P), - + /// Expr with a trailing semi-colon. Semi(P), - + /// Macro. Mac(P<(Mac, MacStmtStyle, ThinVec)>), } From af3536dbbcc4efe6e3020a2720f0594934d5cf3c Mon Sep 17 00:00:00 2001 From: Zaki Manian Date: Tue, 5 Sep 2017 18:46:21 -0700 Subject: [PATCH 2/2] Remove trailing white space --- src/libsyntax/ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 2b13bd9c410d5..5248f874a6e97 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -763,7 +763,7 @@ pub enum StmtKind { Expr(P), /// Expr with a trailing semi-colon. Semi(P), - /// Macro. + /// Macro. Mac(P<(Mac, MacStmtStyle, ThinVec)>), }