Update clippy_lints/src/let_underscore.rs

Co-authored-by: Philipp Krones <hello@philkrones.com>
This commit is contained in:
Samuel E. Moelius 2020-11-08 17:25:50 -05:00 committed by GitHub
parent 9751cba2c6
commit 8211b597ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,7 +95,7 @@ declare_clippy_lint! {
/// }
/// ```
pub LET_UNDERSCORE_DROP,
correctness,
pedantic,
"non-binding let on a type that implements `Drop`"
}