diff options
| author | Lucas Kent <rubickent@gmail.com> | 2021-12-17 18:36:18 +1100 |
|---|---|---|
| committer | Lucas Kent <rubickent@gmail.com> | 2022-01-09 14:09:25 +1100 |
| commit | 08829853d3c69f68a5a09fb4bcc53ca87d373a78 (patch) | |
| tree | 338b04e9ccd5b0aabb6f128f23704013c3d11508 /compiler/rustc_parse/src/parser | |
| parent | 23ce5fc4655ed546f74a85fc8836e95bec0c64fd (diff) | |
| download | rust-08829853d3c69f68a5a09fb4bcc53ca87d373a78.tar.gz rust-08829853d3c69f68a5a09fb4bcc53ca87d373a78.zip | |
eplace usages of vec![].into_iter with [].into_iter
Diffstat (limited to 'compiler/rustc_parse/src/parser')
| -rw-r--r-- | compiler/rustc_parse/src/parser/diagnostics.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/diagnostics.rs b/compiler/rustc_parse/src/parser/diagnostics.rs index 9677e7642b8..4121a759c37 100644 --- a/compiler/rustc_parse/src/parser/diagnostics.rs +++ b/compiler/rustc_parse/src/parser/diagnostics.rs @@ -550,8 +550,8 @@ impl<'a> Parser<'a> { /// a diagnostic to suggest removing them. /// /// ```ignore (diagnostic) - /// let _ = vec![1, 2, 3].into_iter().collect::<Vec<usize>>>>(); - /// ^^ help: remove extra angle brackets + /// let _ = [1, 2, 3].into_iter().collect::<Vec<usize>>>>(); + /// ^^ help: remove extra angle brackets /// ``` /// /// If `true` is returned, then trailing brackets were recovered, tokens were consumed |
