Fix LHS test file
Garen Torikian gjtorikian@gmail.com
Wed, 11 Sep 2013 21:48:31 -0700
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