about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2018-02-17 23:47:45 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2018-02-17 23:47:45 +0100
commit6661ebb4bd73bfe2ef93f9edcf9c89243ab32e46 (patch)
tree0f37b633572dcee7005c400e7a3d5a6fd8af1a4e /src
parentc5be497888712e3333e23cacfafd665e45a5a968 (diff)
downloadrust-6661ebb4bd73bfe2ef93f9edcf9c89243ab32e46.tar.gz
rust-6661ebb4bd73bfe2ef93f9edcf9c89243ab32e46.zip
Remove useless comment
Diffstat (limited to 'src')
-rw-r--r--src/librustdoc/html/markdown.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/librustdoc/html/markdown.rs b/src/librustdoc/html/markdown.rs
index 3a936882d95..fedd802ce55 100644
--- a/src/librustdoc/html/markdown.rs
+++ b/src/librustdoc/html/markdown.rs
@@ -47,7 +47,6 @@ use pulldown_cmark::{Options, OPTION_ENABLE_FOOTNOTES, OPTION_ENABLE_TABLES};
 /// formatted, this struct will emit the HTML corresponding to the rendered
 /// version of the contained markdown string.
 /// The second parameter is a list of link replacements
-// The third parameter is whether we need a shorter version or not.
 pub struct Markdown<'a>(pub &'a str, pub &'a [(String, String)]);
 /// A unit struct like `Markdown`, that renders the markdown with a
 /// table of contents.