Skip to content

Commit 4884c2f

Browse files
authored
Merge pull request #3507 from flying-sheep/patch-1
typo: emum → enum
2 parents 041c49c + 2fed8d9 commit 4884c2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/utils/conf.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ define_Conf! {
148148
(too_large_for_stack, "too_large_for_stack", 200 => u64),
149149
/// Lint: ENUM_VARIANT_NAMES. The minimum number of enum variants for the lints about variant names to trigger
150150
(enum_variant_name_threshold, "enum_variant_name_threshold", 3 => u64),
151-
/// Lint: LARGE_ENUM_VARIANT. The maximum size of a emum's variant to avoid box suggestion
151+
/// Lint: LARGE_ENUM_VARIANT. The maximum size of a enum's variant to avoid box suggestion
152152
(enum_variant_size_threshold, "enum_variant_size_threshold", 200 => u64),
153153
/// Lint: VERBOSE_BIT_MASK. The maximum allowed size of a bit mask before suggesting to use 'trailing_zeros'
154154
(verbose_bit_mask_threshold, "verbose_bit_mask_threshold", 1 => u64),

0 commit comments

Comments
 (0)