diff options
author | Maan2003 <[email protected]> | 2021-06-13 05:07:28 +0100 |
---|---|---|
committer | Maan2003 <[email protected]> | 2021-06-13 05:07:28 +0100 |
commit | b857a5dcf094728b4beefd652ea31d2828eb0e10 (patch) | |
tree | a6537335c95ef8bd740127b7136833650ddf8bad /crates/syntax | |
parent | c50b4579ec842ac7c1f52e0e3c834d50fc9cd1bb (diff) |
clippy::manual_str_repeat
Diffstat (limited to 'crates/syntax')
-rw-r--r-- | crates/syntax/src/ast/edit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/src/ast/edit.rs b/crates/syntax/src/ast/edit.rs index 8698687d8..2663c0759 100644 --- a/crates/syntax/src/ast/edit.rs +++ b/crates/syntax/src/ast/edit.rs | |||
@@ -95,7 +95,7 @@ impl fmt::Display for IndentLevel { | |||
95 | let indent = if len <= spaces.len() { | 95 | let indent = if len <= spaces.len() { |
96 | &spaces[..len] | 96 | &spaces[..len] |
97 | } else { | 97 | } else { |
98 | buf = iter::repeat(' ').take(len).collect::<String>(); | 98 | buf = " ".repeat(len); |
99 | &buf | 99 | &buf |
100 | }; | 100 | }; |
101 | fmt::Display::fmt(indent, f) | 101 | fmt::Display::fmt(indent, f) |