diff options
| author | koka <koka.code@gmail.com> | 2023-01-29 02:54:26 +0900 |
|---|---|---|
| committer | koka <koka.code@gmail.com> | 2023-01-29 02:54:26 +0900 |
| commit | 25d455bd1728ba28c5cf6a0e044f2194a7d4d2ca (patch) | |
| tree | 33fd34d8e8f854d99bb92b2428483afb7ea273e9 /clippy_lints/src/utils | |
| parent | e791522d35bf33a9008c367902ccaf3387325968 (diff) | |
| download | rust-25d455bd1728ba28c5cf6a0e044f2194a7d4d2ca.tar.gz rust-25d455bd1728ba28c5cf6a0e044f2194a7d4d2ca.zip | |
fix: add missing dot to suppress_restriction_lint_in_const
Diffstat (limited to 'clippy_lints/src/utils')
| -rw-r--r-- | clippy_lints/src/utils/conf.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/utils/conf.rs b/clippy_lints/src/utils/conf.rs index f7a35dc798e..f8a5b5547de 100644 --- a/clippy_lints/src/utils/conf.rs +++ b/clippy_lints/src/utils/conf.rs @@ -446,7 +446,7 @@ define_Conf! { /// /// Whether to allow mixed uninlined format args, e.g. `format!("{} {}", a, foo.bar)` (allow_mixed_uninlined_format_args: bool = true), - /// Lint: INDEXING_SLICING + /// Lint: INDEXING_SLICING. /// /// Whether to suppress a restriction lint in constant code. In same /// cases the restructured operation might not be unavoidable, as the |
