about summary refs log tree commit diff
path: root/clippy_lints/src/main_recursion.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-07-28 13:15:43 +0000
committerbors <bors@rust-lang.org>2021-07-28 13:15:43 +0000
commit92ca25b3ec8cef291f1d3b37bfd01d3cce8609e2 (patch)
treee58ac96a0819f774260a28ea7c1dcdcca567bee2 /clippy_lints/src/main_recursion.rs
parentac0fd99194141f189b3fc41ef2d8925e6fa359c2 (diff)
parent464c85c8c1c71feda6e53eb9d8713bfdafaf7d8b (diff)
downloadrust-92ca25b3ec8cef291f1d3b37bfd01d3cce8609e2.tar.gz
rust-92ca25b3ec8cef291f1d3b37bfd01d3cce8609e2.zip
Auto merge of #7502 - flip1995:rollup-y3ho3w0, r=flip1995
Rollup of 3 pull requests

Successful merges:

 - #7279 (Adapting the lint list to Clippy's new metadata format)
 - #7298 (Switch CI to new metadata collection)
 - #7420 (Update lint documentation to use markdown headlines)

Failed merges:

r? `@ghost`
`@rustbot` modify labels: rollup

changelog: rollup
Diffstat (limited to 'clippy_lints/src/main_recursion.rs')
-rw-r--r--clippy_lints/src/main_recursion.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/clippy_lints/src/main_recursion.rs b/clippy_lints/src/main_recursion.rs
index 07d8a440aea..776e4b3fe76 100644
--- a/clippy_lints/src/main_recursion.rs
+++ b/clippy_lints/src/main_recursion.rs
@@ -7,14 +7,14 @@ use rustc_lint::{LateContext, LateLintPass};
 use rustc_session::{declare_tool_lint, impl_lint_pass};
 
 declare_clippy_lint! {
-    /// **What it does:** Checks for recursion using the entrypoint.
+    /// ### What it does
+    /// Checks for recursion using the entrypoint.
     ///
-    /// **Why is this bad?** Apart from special setups (which we could detect following attributes like #![no_std]),
+    /// ### Why is this bad?
+    /// Apart from special setups (which we could detect following attributes like #![no_std]),
     /// recursing into main() seems like an unintuitive antipattern we should be able to detect.
     ///
-    /// **Known problems:** None.
-    ///
-    /// **Example:**
+    /// ### Example
     /// ```no_run
     /// fn main() {
     ///     main();