aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-11-08 17:50:09 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2006-11-08 17:50:09 +0000
commit82d7190a0c1a30e7f000ed771e6fdd93cf735210 (patch)
tree17ff8bca7ff24647503774981c27d00e6b173eb5 /src
parent30814712b748d9d6e1f38cb442ada47910ec7836 (diff)
downloadpandoc-82d7190a0c1a30e7f000ed771e6fdd93cf735210.tar.gz
Fixed two small Haddock comment bugs in Shared.hs.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@87 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src')
-rw-r--r--src/Text/Pandoc/Shared.hs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Text/Pandoc/Shared.hs b/src/Text/Pandoc/Shared.hs
index dc58dd6b4..c35e33d01 100644
--- a/src/Text/Pandoc/Shared.hs
+++ b/src/Text/Pandoc/Shared.hs
@@ -83,7 +83,8 @@ data ParserState = ParserState
stateTitle :: [Inline], -- ^ Title of document
stateAuthors :: [String], -- ^ Authors of document
stateDate :: String, -- ^ Date of document
- stateHeaderTable :: [HeaderType] } -- ^ List of header types used, in what order (for reStructuredText only)
+ stateHeaderTable :: [HeaderType] -- ^ List of header types used, in what order (for reStructuredText only)
+ }
deriving Show
defaultParserState :: ParserState
@@ -274,7 +275,8 @@ data WriterOptions = WriterOptions
, writerS5 :: Bool -- ^ @True@ if we're writing S5 instead of normal HTML
, writerIncremental :: Bool -- ^ If @True@, display S5 lists incrementally
, writerNumberSections :: Bool -- ^ If @True@, number sections in LaTeX
- , writerTabStop :: Int } -- ^ Tabstop for conversion between spaces and tabs
+ , writerTabStop :: Int -- ^ Tabstop for conversion between spaces and tabs
+ }
deriving Show
--