diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-12 00:52:17 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-12 00:52:17 +0000 |
commit | 17a41e6ebcb818c996ea6eeda4ac1e24e12ee08a (patch) | |
tree | 5484cd7e4869db94b37bb9ad6367dfe002760d20 /Text/Pandoc | |
parent | 24bf0cfe8cada90c585eefe25cf905c256240e57 (diff) | |
download | pandoc-17a41e6ebcb818c996ea6eeda4ac1e24e12ee08a.tar.gz |
Small haddock documentation fix. (Andrea Rossato)
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1407 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'Text/Pandoc')
-rw-r--r-- | Text/Pandoc/Definition.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Text/Pandoc/Definition.hs b/Text/Pandoc/Definition.hs index 7fc04f698..e97a2a53a 100644 --- a/Text/Pandoc/Definition.hs +++ b/Text/Pandoc/Definition.hs @@ -65,8 +65,8 @@ data ListNumberDelim = DefaultDelim | OneParen | TwoParens deriving (Eq, Show, Read, Typeable, Data) --- | Attributes. -type Attr = (String, [String], [(String, String)]) -- ^ Identifier, classes, key-value pairs +-- | Attributes: identifier, classes, key-value pairs +type Attr = (String, [String], [(String, String)]) -- | Block element. data Block |