diff options
| author | bors <bors@rust-lang.org> | 2019-10-04 06:13:47 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-10-04 06:13:47 +0000 |
| commit | c926f1b571286ff131d28de062a09e1224736c1b (patch) | |
| tree | aea895ee0f020ee04267a9d5f6e27cf319ff2994 | |
| parent | b824f021d61ddee59695f20c7128c39d80e9e5b6 (diff) | |
| parent | e333ed0d53ac94a2a66f8fee0682f804f0c37a1d (diff) | |
| download | rust-c926f1b571286ff131d28de062a09e1224736c1b.tar.gz rust-c926f1b571286ff131d28de062a09e1224736c1b.zip | |
Auto merge of #4622 - Lythenas:fix-doc-formatting-for-mistyped-literal-suffixes, r=phansch
Correctly align doc of mistyped literal suffixes changelog: Fix misaligned markdown list in doc of `mistyped_literal_suffixes`
| -rw-r--r-- | clippy_lints/src/literal_representation.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clippy_lints/src/literal_representation.rs b/clippy_lints/src/literal_representation.rs index 65a266b2eaf..5cdbfe1099c 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:** /// |
