lib/markdown: fix missing space after wikilinks token
authorAlexandre Terrasa <alexandre@moz-code.org>
Sat, 6 Jun 2015 20:47:01 +0000 (16:47 -0400)
committerAlexandre Terrasa <alexandre@moz-code.org>
Wed, 10 Jun 2015 00:39:04 +0000 (20:39 -0400)
Signed-off-by: Alexandre Terrasa <alexandre@moz-code.org>

lib/markdown/wikilinks.nit

index 22b67c0..28fd1e0 100644 (file)
@@ -88,7 +88,6 @@ class TokenWikiLink
                pos += 1
                pos = md.skip_spaces(pos)
                if pos < start then return -1
-               pos += 1
                return pos
        end
 end