Skip to content
Snippets Groups Projects
Unverified Commit 6a981658 authored by cdornan's avatar cdornan Committed by GitHub
Browse files

Merge pull request #13 from vaerksted/master

fix typos
parents ecf5fd1a ee9181dc
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@
--
-- An XHTML combinator library
--
-- These combinators can be used to build formated 2D tables.
-- These combinators can be used to build formatted 2D tables.
-- The specific target usage is for HTML table generation.
-----------------------------------------------------------------------------
......
......@@ -35,7 +35,7 @@ docType =
-- | Output the HTML without adding newlines or spaces within the markup.
-- This should be the most time and space efficient way to
-- render HTML, though the ouput is quite unreadable.
-- render HTML, though the output is quite unreadable.
showHtml :: HTML html => html -> String
showHtml = showHtmlInternal docType
......
......@@ -221,7 +221,7 @@ mkHtml = (tag "html" ! [strAttr "xmlns" "http://www.w3.org/1999/xhtml"] <<)
-- | Output the HTML without adding newlines or spaces within the markup.
-- This should be the most time and space efficient way to
-- render HTML, though the ouput is quite unreadable.
-- render HTML, though the output is quite unreadable.
showHtmlInternal :: HTML html =>
String -- ^ DOCTYPE declaration
-> html -> String
......
......@@ -30,7 +30,7 @@ docType = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\""
-- | Output the HTML without adding newlines or spaces within the markup.
-- This should be the most time and space efficient way to
-- render HTML, though the ouput is quite unreadable.
-- render HTML, though the output is quite unreadable.
showHtml :: HTML html => html -> String
showHtml = showHtmlInternal docType
......
......@@ -41,7 +41,7 @@ docType =
-- | Output the HTML without adding newlines or spaces within the markup.
-- This should be the most time and space efficient way to
-- render HTML, though the ouput is quite unreadable.
-- render HTML, though the output is quite unreadable.
showHtml :: HTML html => html -> String
showHtml = showHtmlInternal docType
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment