diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-03-31 20:20:02 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-03-31 20:20:02 +0000 |
commit | 2fdcd1701ac25743316e81eb789e19c9cf622fa0 (patch) | |
tree | 1a7aeafe7add47edfd0f81e9581d57a6268578be | |
parent | 447efa0f9f058f7ee0884e048f1f662678d40a6c (diff) | |
download | pandoc-2fdcd1701ac25743316e81eb789e19c9cf622fa0.tar.gz |
Fixed haddock documentation error
(affects latest version of haddock only).
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1275 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | Text/Pandoc/Definition.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Text/Pandoc/Definition.hs b/Text/Pandoc/Definition.hs index a518314a6..04deca1ea 100644 --- a/Text/Pandoc/Definition.hs +++ b/Text/Pandoc/Definition.hs @@ -92,7 +92,8 @@ data Block -- | Type of quotation marks to use in Quoted inline. data QuoteType = SingleQuote | DoubleQuote deriving (Show, Eq, Read) -type Target = (String, String) -- ^ Link target (URL, title) +-- | Link target (URL, title). +type Target = (String, String) -- | Inline elements. data Inline |