about summary refs log tree commit diff
path: root/src/tools
diff options
context:
space:
mode:
authorQuietMisdreavus <grey@quietmisdreavus.net>2017-12-28 13:35:10 -0600
committerManish Goregaokar <manishsmail@gmail.com>2018-01-22 15:24:28 +0530
commitef4587b270226a34fb178ca43c60484ca98371a0 (patch)
tree6d790c66daa720189463710368b8ac11f74b3bb4 /src/tools
parent9d5b1ae763c0d34e31c8fe866be57f570bd0869f (diff)
downloadrust-ef4587b270226a34fb178ca43c60484ca98371a0.tar.gz
rust-ef4587b270226a34fb178ca43c60484ca98371a0.zip
fix error_index_generator
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/error_index_generator/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/error_index_generator/main.rs b/src/tools/error_index_generator/main.rs
index aedae366c41..8454e71fa3f 100644
--- a/src/tools/error_index_generator/main.rs
+++ b/src/tools/error_index_generator/main.rs
@@ -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")?,
         }