We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1a627a commit 9194c11Copy full SHA for 9194c11
clippy_lints/src/from_str_radix_10.rs
@@ -19,12 +19,12 @@ declare_clippy_lint! {
19
///
20
/// **Example:**
21
22
- /// ```rust
+ /// ```ignore
23
/// let input: &str = get_input();
24
/// let num = u16::from_str_radix(input, 10)?;
25
/// ```
26
/// Use instead:
27
28
29
/// let num: u16 = input.parse()?;
30
0 commit comments