fix error message

This commit is contained in:
Frank 2020-09-24 16:43:29 -05:00
parent 725a0ef8b1
commit 3886edb05a

View file

@ -16,14 +16,14 @@ declare_clippy_lint! {
///
/// **Example:**
///
/// ```rust
/// ```rust,ignore
/// // example code where clippy issues a warning
/// foo.bad_method(); // Foo is disallowed
/// ```
/// Use instead:
/// ```rust
/// ```rust,ignore
/// // example code which does not raise clippy warning
/// GoodStruct.bad_method(); // not disallowed
/// goodStruct.bad_method(); // not disallowed
/// ```
pub DISALLOWED_METHOD,
nursery,