Fix missing line comment in doc_markdown example

rustfmt [wrapped the line](b25b6b3355 (diff-561823671726302d969756ded53a13a7L22)), so we need a second `///`
This commit is contained in:
Nathan 2018-04-27 02:31:36 -04:00 committed by GitHub
parent 3b6440212d
commit f327f26113
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) { .. }
/// ```