diff options
| author | Zaki Manian <zaki@manian.org> | 2017-09-03 12:27:31 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-03 12:27:31 -0700 |
| commit | 3333262f05aef40c1403f15b22fcf0356d60085b (patch) | |
| tree | 41d2a8f1c59ce21b649e2059a8a50f8c0722ba9e /src/libsyntax | |
| parent | c8642daf93f725685309fc12f9d0908fec54b63a (diff) | |
| download | rust-3333262f05aef40c1403f15b22fcf0356d60085b.tar.gz rust-3333262f05aef40c1403f15b22fcf0356d60085b.zip | |
Minor documentation improvements for StmtKind
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 720f6cd32bd..2b13bd9c410 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>), - + /// Expr with a trailing semi-colon. Semi(P<Expr>), - + /// Macro. Mac(P<(Mac, MacStmtStyle, ThinVec<Attribute>)>), } |
