aboutsummaryrefslogtreecommitdiffhomepage
path: root/fish_indent.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-12-24 14:17:06 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2014-12-24 14:17:06 -0800
commit5f2ea007a5d1e5934499c2d0b249c69bbb216c6a (patch)
treee8219df059a42512599052d72def5e4e1ad442a1 /fish_indent.cpp
parente5a2343879398351d80af0f8941c1aaea91144bc (diff)
Close <code> before <pre> in fish_indent
Diffstat (limited to 'fish_indent.cpp')
-rw-r--r--fish_indent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fish_indent.cpp b/fish_indent.cpp
index fe8fb801..22934e9e 100644
--- a/fish_indent.cpp
+++ b/fish_indent.cpp
@@ -264,7 +264,7 @@ static std::string html_colorize(const wcstring &text, const std::vector<highlig
break;
}
}
- html.append(L"</span></pre></code>");
+ html.append(L"</span></code></pre>");
return wcs2string(html);
}