This commit is contained in:
Christoph Walcher 2020-07-29 16:10:15 +02:00
parent 94c50bc8c9
commit 2b7fde6a4b
No known key found for this signature in database
GPG Key ID: A193164A4D05EE44
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ declare_clippy_lint! {
/// ```
pub TRAIT_DUPLICATION_IN_BOUNDS,
pedantic,
"Check if the same trait bounds are specifed twice during a function declaration"
"Check if the same trait bounds are specified twice during a function declaration"
}
#[derive(Copy, Clone)]

View File

@ -2169,7 +2169,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
Lint {
name: "trait_duplication_in_bounds",
group: "pedantic",
desc: "Check if the same trait bounds are specifed twice during a function declaration",
desc: "Check if the same trait bounds are specified twice during a function declaration",
deprecation: None,
module: "trait_bounds",
},