diff options
author | Maan2003 <[email protected]> | 2021-06-13 05:10:22 +0100 |
---|---|---|
committer | Maan2003 <[email protected]> | 2021-06-13 05:10:22 +0100 |
commit | aabd41cafc1a79f5ad124a31a360ab0442c13efd (patch) | |
tree | 584a7f437204904fcf23b55e201cb27323790b02 /crates/ide_completion/src | |
parent | b857a5dcf094728b4beefd652ea31d2828eb0e10 (diff) |
clippy::redundant_field_names
Diffstat (limited to 'crates/ide_completion/src')
-rw-r--r-- | crates/ide_completion/src/completions/postfix/format_like.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_completion/src/completions/postfix/format_like.rs b/crates/ide_completion/src/completions/postfix/format_like.rs index f619f8b52..2dc13c293 100644 --- a/crates/ide_completion/src/completions/postfix/format_like.rs +++ b/crates/ide_completion/src/completions/postfix/format_like.rs | |||
@@ -91,7 +91,7 @@ enum State { | |||
91 | impl FormatStrParser { | 91 | impl FormatStrParser { |
92 | pub(crate) fn new(input: String) -> Self { | 92 | pub(crate) fn new(input: String) -> Self { |
93 | Self { | 93 | Self { |
94 | input: input, | 94 | input, |
95 | output: String::new(), | 95 | output: String::new(), |
96 | extracted_expressions: Vec::new(), | 96 | extracted_expressions: Vec::new(), |
97 | state: State::NotExpr, | 97 | state: State::NotExpr, |