From 5c56c924fc587b0343f1a878f04895e2e20bae73 Mon Sep 17 00:00:00 2001 From: Yury Krivopalov Date: Tue, 26 Sep 2017 18:54:08 +0300 Subject: [PATCH] Clarify verbose_bit_mask_threshold description --- clippy_lints/src/utils/conf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/utils/conf.rs b/clippy_lints/src/utils/conf.rs index 5272e8a6ca6..ff2832186bf 100644 --- a/clippy_lints/src/utils/conf.rs +++ b/clippy_lints/src/utils/conf.rs @@ -172,7 +172,7 @@ fn $rust_name() -> define_Conf!(TY $($ty)+) { (enum_variant_name_threshold, "enum_variant_name_threshold", 3 => u64), /// Lint: LARGE_ENUM_VARIANT. The maximum size of a emum's variant to avoid box suggestion (enum_variant_size_threshold, "enum_variant_size_threshold", 200 => u64), - /// Lint: VERBOSE_BIT_MASK. The maximum size of a bit mask, that won't be checked on verbosity + /// Lint: VERBOSE_BIT_MASK. The maximum allowed size of a bit mask before suggesting to use 'trailing_zeros' (verbose_bit_mask_threshold, "verbose_bit_mask_threshold", 1 => u64), } -- 2.44.0