Skip to content

Commit

Permalink
Fix code snippet in from_str_radix_10 docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexendoo committed Aug 16, 2024
1 parent 5da97d0 commit c037361
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clippy_lints/src/from_str_radix_10.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ declare_clippy_lint! {
///
/// ### 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.
/// 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
/// ```ignore
Expand Down

0 comments on commit c037361

Please sign in to comment.