Auto merge of #13289 - mrnossiom:master, r=y21

fix typo in cfg_not_test lint description

Found this typo while looking at Clippy lints

changelog: none
This commit is contained in:
bors 2024-08-20 10:20:00 +00:00
commit 2c0f318991

View File

@ -5,7 +5,7 @@
declare_clippy_lint! {
/// ### What it does
/// Checks for usage of `cfg` that excludes code from `test` builds. (i.e., `#{cfg(not(test))]`)
/// Checks for usage of `cfg` that excludes code from `test` builds. (i.e., `#[cfg(not(test))]`)
///
/// ### Why is this bad?
/// This may give the false impression that a codebase has 100% coverage, yet actually has untested code.