1
Fork 0

Correctly align doc of mistyped literal suffixes

This commit is contained in:
Matthias Seiffert 2019-10-03 22:07:51 +02:00
parent 737f0a6bb5
commit e333ed0d53

View file

@ -33,9 +33,9 @@ declare_clippy_lint! {
/// **Why is this bad?** This is most probably a typo /// **Why is this bad?** This is most probably a typo
/// ///
/// **Known problems:** /// **Known problems:**
/// - Recommends a signed suffix, even though the number might be too big and an unsigned /// - Recommends a signed suffix, even though the number might be too big and an unsigned
/// suffix is required /// suffix is required
/// - Does not match on `_128` since that is a valid grouping for decimal and octal numbers /// - Does not match on `_128` since that is a valid grouping for decimal and octal numbers
/// ///
/// **Example:** /// **Example:**
/// ///