diff options
| author | bors <bors@rust-lang.org> | 2021-08-23 20:10:29 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-08-23 20:10:29 +0000 |
| commit | a49e38e672c60da788360e088f00ad12353e3913 (patch) | |
| tree | 4fa9f598720e53ebe4efbe6499c6d61dcf120326 /compiler/rustc_parse/src/parser/expr.rs | |
| parent | 9583fd1bdd0127328e25e5b8c24dff575ec2c86b (diff) | |
| parent | e7101326160ebf6642339a5099d22f6502bf2ae4 (diff) | |
| download | rust-a49e38e672c60da788360e088f00ad12353e3913.tar.gz rust-a49e38e672c60da788360e088f00ad12353e3913.zip | |
Auto merge of #88265 - m-ou-se:rollup-soymv20, r=m-ou-se
Rollup of 6 pull requests Successful merges: - #87976 (Account for tabs when highlighting multiline code suggestions) - #88174 (Clarify some wording in Rust 2021 lint docs) - #88188 (Greatly improve limitation handling on parallel rustdoc GUI test run) - #88230 (Fix typos “a”→“an”) - #88232 (Add notes to macro-not-found diagnostics to point out how things with the same name were not a match.) - #88259 (Do not mark `-Z thir-unsafeck` as unsound anymore) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_parse/src/parser/expr.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/expr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs index 6259eff5a1a..326c8f81ffb 100644 --- a/compiler/rustc_parse/src/parser/expr.rs +++ b/compiler/rustc_parse/src/parser/expr.rs @@ -1092,7 +1092,7 @@ impl<'a> Parser<'a> { // added to the return value after the fact. // // Therefore, prevent sub-parser from parsing - // attributes by giving them a empty "already-parsed" list. + // attributes by giving them an empty "already-parsed" list. let attrs = AttrVec::new(); // Note: when adding new syntax here, don't forget to adjust `TokenKind::can_begin_expr()`. |
