@@ -253,7 +253,7 @@ define_Conf! {
253253 ///
254254 /// Suppress lints whenever the suggested change would cause breakage for other crates.
255255 ( avoid_breaking_exported_api: bool = true ) ,
256- /// Lint: MANUAL_SPLIT_ONCE, MANUAL_STR_REPEAT, CLONED_INSTEAD_OF_COPIED, REDUNDANT_FIELD_NAMES, REDUNDANT_STATIC_LIFETIMES, FILTER_MAP_NEXT, CHECKED_CONVERSIONS, MANUAL_RANGE_CONTAINS, USE_SELF, MEM_REPLACE_WITH_DEFAULT, MANUAL_NON_EXHAUSTIVE, OPTION_AS_REF_DEREF, MAP_UNWRAP_OR, MATCH_LIKE_MATCHES_MACRO, MANUAL_STRIP, MISSING_CONST_FOR_FN, UNNESTED_OR_PATTERNS, FROM_OVER_INTO, PTR_AS_PTR, IF_THEN_SOME_ELSE_NONE, APPROX_CONSTANT, DEPRECATED_CFG_ATTR, INDEX_REFUTABLE_SLICE, MAP_CLONE, BORROW_AS_PTR, MANUAL_BITS, ERR_EXPECT, CAST_ABS_TO_UNSIGNED, UNINLINED_FORMAT_ARGS, MANUAL_CLAMP, MANUAL_LET_ELSE, UNCHECKED_DURATION_SUBTRACTION.
256+ /// Lint: MANUAL_SPLIT_ONCE, MANUAL_STR_REPEAT, CLONED_INSTEAD_OF_COPIED, REDUNDANT_FIELD_NAMES, REDUNDANT_STATIC_LIFETIMES, FILTER_MAP_NEXT, CHECKED_CONVERSIONS, MANUAL_RANGE_CONTAINS, USE_SELF, MEM_REPLACE_WITH_DEFAULT, MANUAL_NON_EXHAUSTIVE, OPTION_AS_REF_DEREF, MAP_UNWRAP_OR, MATCH_LIKE_MATCHES_MACRO, MANUAL_STRIP, MISSING_CONST_FOR_FN, UNNESTED_OR_PATTERNS, FROM_OVER_INTO, PTR_AS_PTR, IF_THEN_SOME_ELSE_NONE, APPROX_CONSTANT, DEPRECATED_CFG_ATTR, INDEX_REFUTABLE_SLICE, MAP_CLONE, BORROW_AS_PTR, MANUAL_BITS, ERR_EXPECT, CAST_ABS_TO_UNSIGNED, UNINLINED_FORMAT_ARGS, MANUAL_CLAMP, MANUAL_LET_ELSE, UNCHECKED_DURATION_SUBTRACTION, COLLAPSIBLE_STR_REPLACE, SEEK_FROM_CURRENT, SEEK_REWIND, UNNECESSARY_LAZY_EVALUATIONS, TRANSMUTE_PTR_TO_REF, ALMOST_COMPLETE_RANGE, NEEDLESS_BORROW, DERIVABLE_IMPLS, MANUAL_IS_ASCII_CHECK, MANUAL_REM_EUCLID, MANUAL_RETAIN .
257257 ///
258258 /// The minimum rust version that the project supports
259259 ( msrv: Option <String > = None ) ,
@@ -323,7 +323,7 @@ define_Conf! {
323323 ///
324324 /// The maximum size (in bytes) to consider a `Copy` type for passing by value instead of by reference.
325325 ( trivial_copy_size_limit: Option <u64 > = None ) ,
326- /// Lint: LARGE_TYPE_PASS_BY_MOVE .
326+ /// Lint: LARGE_TYPES_PASSED_BY_VALUE .
327327 ///
328328 /// The minimum size (in bytes) to consider a type for passing by reference instead of by value.
329329 ( pass_by_value_size_limit: u64 = 256 ) ,
@@ -411,7 +411,7 @@ define_Conf! {
411411 /// the slice pattern that is suggested. If more elements would be necessary, the lint is suppressed.
412412 /// For example, `[_, _, _, e, ..]` is a slice pattern with 4 elements.
413413 ( max_suggested_slice_pattern_length: u64 = 3 ) ,
414- /// Lint: AWAIT_HOLDING_INVALID_TYPE
414+ /// Lint: AWAIT_HOLDING_INVALID_TYPE.
415415 ( await_holding_invalid_types: Vec <crate :: utils:: conf:: DisallowedPath > = Vec :: new( ) ) ,
416416 /// Lint: LARGE_INCLUDE_FILE.
417417 ///
@@ -437,7 +437,7 @@ define_Conf! {
437437 ///
438438 /// The maximum size of the `Err`-variant in a `Result` returned from a function
439439 ( large_error_threshold: u64 = 128 ) ,
440- /// Lint: MUTABLE_KEY .
440+ /// Lint: MUTABLE_KEY_TYPE .
441441 ///
442442 /// A list of paths to types that should be treated like `Arc`, i.e. ignored but
443443 /// for the generic parameters for determining interior mutability
@@ -446,7 +446,7 @@ define_Conf! {
446446 ///
447447 /// Whether to allow mixed uninlined format args, e.g. `format!("{} {}", a, foo.bar)`
448448 ( allow_mixed_uninlined_format_args: bool = true ) ,
449- /// Lint: INDEXING_SLICING
449+ /// Lint: INDEXING_SLICING.
450450 ///
451451 /// Whether to suppress a restriction lint in constant code. In same
452452 /// cases the restructured operation might not be unavoidable, as the
0 commit comments