fix error_index_generator

This commit is contained in:
QuietMisdreavus 2017-12-28 13:35:10 -06:00 committed by Manish Goregaokar
parent 9d5b1ae763
commit ef4587b270

View File

@ -100,7 +100,7 @@ impl Formatter for HTMLFormatter {
// Description rendered as markdown.
match info.description {
Some(ref desc) => write!(output, "{}", Markdown(desc, RenderType::Hoedown))?,
Some(ref desc) => write!(output, "{}", Markdown(desc, &[], RenderType::Hoedown))?,
None => write!(output, "<p>No description.</p>\n")?,
}