@@ -313,25 +313,24 @@ impl<'a, 'b> MutVisitor for PlaceholderExpander<'a, 'b> {
313313 // Implement the proposal described in
314314 // https://github.com/rust-lang/rust/issues/61733#issuecomment-509626449
315315 //
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:
320319 //
321320 // `empty();` is parsed as a single `StmtKind::Empty`
322321 //
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.
325324 //
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,
328327 // using `stmt.add_trailing_semicolon()`
329328 //
330329 // If it does have a semicolon, then 'parse' the trailing semicolon
331330 // from the invocation as a new StmtKind::Empty
332331
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
335334 let empty_stmt = ast:: Stmt {
336335 id : ast:: DUMMY_NODE_ID ,
337336 kind : ast:: StmtKind :: Empty ,
0 commit comments