Skip to content

Commit

Permalink
Fixed the known problems section
Browse files Browse the repository at this point in the history
  • Loading branch information
booleancoercion committed Feb 19, 2021
1 parent bf55aee commit c4b8d87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clippy_lints/src/from_str_radix_10.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
///
Expand Down

0 comments on commit c4b8d87

Please sign in to comment.