diff options
| author | xFrednet <xFrednet@gmail.com> | 2022-07-01 18:05:45 +0200 |
|---|---|---|
| committer | xFrednet <xFrednet@gmail.com> | 2022-07-01 18:05:45 +0200 |
| commit | a86bf81e44dd530b69b686c556069bb8f6569c64 (patch) | |
| tree | b73374bebfe1e1b34db4af54e3b304f8933ee3d4 | |
| parent | d8970bfa089ad515d914ce12b0049e427082b254 (diff) | |
| download | rust-a86bf81e44dd530b69b686c556069bb8f6569c64.tar.gz rust-a86bf81e44dd530b69b686c556069bb8f6569c64.zip | |
Correct lint version for `format_push_string`
| -rw-r--r-- | clippy_lints/src/format_push_string.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/format_push_string.rs b/clippy_lints/src/format_push_string.rs index ee15ae9f59a..de19c5ec20e 100644 --- a/clippy_lints/src/format_push_string.rs +++ b/clippy_lints/src/format_push_string.rs @@ -27,7 +27,7 @@ declare_clippy_lint! { /// let mut s = String::new(); /// let _ = write!(s, "0x{:X}", 1024); /// ``` - #[clippy::version = "1.61.0"] + #[clippy::version = "1.62.0"] pub FORMAT_PUSH_STRING, perf, "`format!(..)` appended to existing `String`" |
