Change declare_lint! to declare_clippy_lint!

This commit is contained in:
Michael Recachinas 2018-04-02 00:25:57 +01:00
parent ddd75fbfec
commit 511aa654d7
1 changed files with 2 additions and 2 deletions

View File

@ -88,9 +88,9 @@ declare_clippy_lint! {
/// ```rust
/// println!("{}", "foo");
/// ```
declare_lint! {
declare_clippy_lint! {
pub PRINT_LITERAL,
Allow,
style,
"printing a literal with a format string"
}