about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-10-04 06:13:47 +0000
committerbors <bors@rust-lang.org>2019-10-04 06:13:47 +0000
commitc926f1b571286ff131d28de062a09e1224736c1b (patch)
treeaea895ee0f020ee04267a9d5f6e27cf319ff2994
parentb824f021d61ddee59695f20c7128c39d80e9e5b6 (diff)
parente333ed0d53ac94a2a66f8fee0682f804f0c37a1d (diff)
downloadrust-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.rs6
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:**
     ///