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 df81b6f commit 0a4552dCopy full SHA for 0a4552d
clippy_lints/src/disallowed_method.rs
@@ -16,14 +16,14 @@ declare_clippy_lint! {
16
///
17
/// **Example:**
18
19
- /// ```rust
+ /// ```rust,ignore
20
/// // example code where clippy issues a warning
21
/// foo.bad_method(); // Foo is disallowed
22
/// ```
23
/// Use instead:
24
25
/// // example code which does not raise clippy warning
26
- /// GoodStruct.bad_method(); // not disallowed
+ /// goodStruct.bad_method(); // not disallowed
27
28
pub DISALLOWED_METHOD,
29
nursery,
0 commit comments