From f327f261130d090c7eb0b924237f5e321d680399 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 27 Apr 2018 02:31:36 -0400 Subject: [PATCH] Fix missing line comment in doc_markdown example rustfmt [wrapped the line](https://github.com/rust-lang-nursery/rust-clippy/commit/b25b6b3355efa33c797f4a37afb2f516531ad581#diff-561823671726302d969756ded53a13a7L22), so we need a second `///` --- clippy_lints/src/doc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clippy_lints/src/doc.rs b/clippy_lints/src/doc.rs index 5f6c15e222d2..10043df9cbf9 100644 --- a/clippy_lints/src/doc.rs +++ b/clippy_lints/src/doc.rs @@ -21,7 +21,7 @@ use url::Url; /// **Examples:** /// ```rust /// /// Do something with the foo_bar parameter. See also -/// that::other::module::foo. +/// /// that::other::module::foo. /// // ^ `foo_bar` and `that::other::module::foo` should be ticked. /// fn doit(foo_bar) { .. } /// ```