Skip to content

Commit 22c1389

Browse files
Fix typoed mention of config value using _ of - (rust-lang#16304)
Fairly simple and self explanatory, the actual config value is `allowed-duplicate-crates` not `allowed_duplicate_crates` and will throw an error if you use the wrong one. changelog: Fix typoed mention of config value using `_` of `-`
2 parents 7481abc + 981fddb commit 22c1389

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/cargo/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ declare_clippy_lint! {
132132
/// Because this can be caused purely by the dependencies
133133
/// themselves, it's not always possible to fix this issue.
134134
/// In those cases, you can allow that specific crate using
135-
/// the `allowed_duplicate_crates` configuration option.
135+
/// the `allowed-duplicate-crates` configuration option.
136136
///
137137
/// ### Example
138138
/// ```toml

0 commit comments

Comments
 (0)