diff options
| author | QuietMisdreavus <grey@quietmisdreavus.net> | 2017-12-28 13:35:10 -0600 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2018-01-22 15:24:28 +0530 |
| commit | ef4587b270226a34fb178ca43c60484ca98371a0 (patch) | |
| tree | 6d790c66daa720189463710368b8ac11f74b3bb4 /src/tools | |
| parent | 9d5b1ae763c0d34e31c8fe866be57f570bd0869f (diff) | |
| download | rust-ef4587b270226a34fb178ca43c60484ca98371a0.tar.gz rust-ef4587b270226a34fb178ca43c60484ca98371a0.zip | |
fix error_index_generator
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/error_index_generator/main.rs | 2 |
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")?, } |
