Auto merge of #9085 - xFrednet:9081-update-format-push-version, r=Manishearth,flip1995

Correct lint version for `format_push_string`

Closes #9081

changelog: none

IDK what else to say. Look I can draw an ascii penguin =D:

```
 (^v^)
<(   )>
  w w
```
This commit is contained in:
bors 2022-07-01 16:51:34 +00:00
commit f30b68d9d6
1 changed files with 1 additions and 1 deletions

View File

@ -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`"