Skip to content

Commit 2b7fde6

Browse files
committed
typo fix
1 parent 94c50bc commit 2b7fde6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clippy_lints/src/trait_bounds.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ declare_clippy_lint! {
5656
/// ```
5757
pub TRAIT_DUPLICATION_IN_BOUNDS,
5858
pedantic,
59-
"Check if the same trait bounds are specifed twice during a function declaration"
59+
"Check if the same trait bounds are specified twice during a function declaration"
6060
}
6161

6262
#[derive(Copy, Clone)]

src/lintlist/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2169,7 +2169,7 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
21692169
Lint {
21702170
name: "trait_duplication_in_bounds",
21712171
group: "pedantic",
2172-
desc: "Check if the same trait bounds are specifed twice during a function declaration",
2172+
desc: "Check if the same trait bounds are specified twice during a function declaration",
21732173
deprecation: None,
21742174
module: "trait_bounds",
21752175
},

0 commit comments

Comments
 (0)