From e333ed0d53ac94a2a66f8fee0682f804f0c37a1d Mon Sep 17 00:00:00 2001 From: Matthias Seiffert Date: Thu, 3 Oct 2019 22:07:51 +0200 Subject: [PATCH] Correctly align doc of mistyped literal suffixes --- clippy_lints/src/literal_representation.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clippy_lints/src/literal_representation.rs b/clippy_lints/src/literal_representation.rs index 65a266b2e..5cdbfe109 100644 --- a/clippy_lints/src/literal_representation.rs +++ b/clippy_lints/src/literal_representation.rs @@ -33,9 +33,9 @@ declare_clippy_lint! { /// **Why is this bad?** This is most probably a typo /// /// **Known problems:** - /// - Recommends a signed suffix, even though the number might be too big and an unsigned - /// suffix is required - /// - Does not match on `_128` since that is a valid grouping for decimal and octal numbers + /// - Recommends a signed suffix, even though the number might be too big and an unsigned + /// suffix is required + /// - Does not match on `_128` since that is a valid grouping for decimal and octal numbers /// /// **Example:** ///