From: Lucas Bajolet Date: Fri, 27 Nov 2015 16:54:14 +0000 (-0500) Subject: lib/markdown: Fixed spacing issue in which a `then` was mistaken for a suffix X-Git-Tag: v0.8~75^2 X-Git-Url: http://nitlanguage.org lib/markdown: Fixed spacing issue in which a `then` was mistaken for a suffix Signed-off-by: Lucas Bajolet --- diff --git a/lib/markdown/markdown.nit b/lib/markdown/markdown.nit index b9e2f6a..7907409 100644 --- a/lib/markdown/markdown.nit +++ b/lib/markdown/markdown.nit @@ -417,7 +417,7 @@ class MarkdownProcessor end else if c == '_' then if c1 == '_' then - if c0 != ' ' or c2 != ' 'then + if c0 != ' ' or c2 != ' ' then return new TokenStrongUnderscore(loc, pos, c) else return new TokenEmUnderscore(loc, pos, c)