Skip to content

Commit

Permalink
Remove duplicate html tag
Browse files Browse the repository at this point in the history
  • Loading branch information
dmjio committed Jul 6, 2018
1 parent 0ad4d97 commit 9378329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/haskell-miso.org/server/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ handle404 _ respond = respond $ responseLBS

instance L.ToHtml a => L.ToHtml (Wrapper a) where
toHtmlRaw = L.toHtml
toHtml (Wrapper x) =
L.doctypehtml_ $ do
toHtml (Wrapper x) = do
L.doctype_
L.html_ [ L.lang_ "en" ] $ do
L.head_ $ do
L.title_ "Miso: A tasty Haskell front-end framework"
Expand Down

0 comments on commit 9378329

Please sign in to comment.