From 82d7190a0c1a30e7f000ed771e6fdd93cf735210 Mon Sep 17 00:00:00 2001
From: fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>
Date: Wed, 8 Nov 2006 17:50:09 +0000
Subject: [PATCH] Fixed two small Haddock comment bugs in Shared.hs.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@87 788f1e2b-df1e-0410-8736-df70ead52e1b
---
 src/Text/Pandoc/Shared.hs | 6 ++++--
 1 file 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
 
 --