From: Alexandre Terrasa Date: Tue, 29 Aug 2017 23:52:54 +0000 (-0400) Subject: src/doc_down: fix `comment` behavior X-Git-Url: http://nitlanguage.org src/doc_down: fix `comment` behavior Signed-off-by: Alexandre Terrasa --- diff --git a/src/doc/doc_down.nit b/src/doc/doc_down.nit index dbb5252..eedfdf6 100644 --- a/src/doc/doc_down.nit +++ b/src/doc/doc_down.nit @@ -28,7 +28,7 @@ redef class MDoc var comment: String is lazy do var lines = content.to_a if not lines.is_empty then lines.shift - return content.join("\n") + return lines.join("\n") end # Full comment HTML escaped.