@@ -313,25 +313,24 @@ impl<'a, 'b> MutVisitor for PlaceholderExpander<'a, 'b> {
313
313
// Implement the proposal described in
314
314
// https://github.com/rust-lang/rust/issues/61733#issuecomment-509626449
315
315
//
316
- // The macro invocation expands to the list of statements.
317
- // If the list of statements is empty, then 'parse'
318
- // the trailing semicolon on the original invocation
319
- // as an empty statement. That is:
316
+ // The macro invocation expands to the list of statements. If the
317
+ // list of statements is empty, then 'parse' the trailing semicolon
318
+ // on the original invocation as an empty statement. That is:
320
319
//
321
320
// `empty();` is parsed as a single `StmtKind::Empty`
322
321
//
323
- // If the list of statements is non-empty, see if the
324
- // final statement alreayd has a trailing semicolon.
322
+ // If the list of statements is non-empty, see if the final
323
+ // statement already has a trailing semicolon.
325
324
//
326
- // If it doesn't have a semicolon, then 'parse' the trailing semicolon
327
- // from the invocation as part of the final statement,
325
+ // If it doesn't have a semicolon, then 'parse' the trailing
326
+ // semicolon from the invocation as part of the final statement,
328
327
// using `stmt.add_trailing_semicolon()`
329
328
//
330
329
// If it does have a semicolon, then 'parse' the trailing semicolon
331
330
// from the invocation as a new StmtKind::Empty
332
331
333
- // FIXME: We will need to preserve the original
334
- // semicolon token and span as part of #15701
332
+ // FIXME: We will need to preserve the original semicolon token and
333
+ // span as part of #15701
335
334
let empty_stmt = ast:: Stmt {
336
335
id : ast:: DUMMY_NODE_ID ,
337
336
kind : ast:: StmtKind :: Empty ,
0 commit comments