Fixed the known problems section

This commit is contained in:
bool 2021-02-19 22:00:23 +02:00
parent bf55aee7b1
commit c4b8d87ab9

View File

@ -19,7 +19,9 @@ declare_clippy_lint! {
/// (and in most cases, the turbofish can be removed), which reduces code length
/// and complexity.
///
/// **Known problems:** None.
/// **Known problems:**
/// This lint may suggest using (&<expression>).parse() instead of <expression>.parse() directly
/// in some cases, which is correct but adds unnecessary complexity to the code.
///
/// **Example:**
///