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:** /// **Example:**
/// ///
/// ```rust /// ```rust,ignore
/// // example code where clippy issues a warning /// // example code where clippy issues a warning
/// foo.bad_method(); // Foo is disallowed /// foo.bad_method(); // Foo is disallowed
/// ``` /// ```
/// Use instead: /// Use instead:
/// ```rust /// ```rust,ignore
/// // example code which does not raise clippy warning /// // example code which does not raise clippy warning
/// GoodStruct.bad_method(); // not disallowed /// goodStruct.bad_method(); // not disallowed
/// ``` /// ```
pub DISALLOWED_METHOD, pub DISALLOWED_METHOD,
nursery, nursery,