Merge commit 'd7b5cbf065' into clippyup

This commit is contained in:
flip1995 2022-06-16 17:39:06 +02:00
parent bd071bf5b2
commit f8f9d01c2a
199 changed files with 4158 additions and 1931 deletions

View file

@ -21,11 +21,12 @@ declare_clippy_lint! {
///
/// ### Example
/// ```rust
/// // Bad
/// // format!() returns a `String`
/// let s: String = format!("hello").into();
/// ```
///
/// // Good
/// Use instead:
/// ```rust
/// let s: String = format!("hello");
/// ```
#[clippy::version = "1.45.0"]