Fix test fixture for Markdown/LHS rendering
Jeremy McAnally jmcanally@github.com
Thu, 08 Nov 2012 00:02:36 -0500
1 files changed,
1 insertions(+),
1 deletions(-)
jump to
M
test/markups/README.lhs.html
→
test/markups/README.lhs.html
@@ -2,7 +2,7 @@ <h1>Markdown</h1>
<p>Except with more magic added.</p> -<pre lang="haskell"><code>isPrefixOf :: (Eq a) => [a] -> [a] -> Bool +<pre><code class="haskell">isPrefixOf :: (Eq a) => [a] -> [a] -> Bool isPrefixOf [] _ = True isPrefixOf _ [] = False isPrefixOf (x:xs) (y:ys)= x == y && isPrefixOf xs ys