summaryrefslogtreecommitdiff
path: root/src/Text/Pandoc
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-01-04 02:27:24 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2010-01-04 02:27:24 +0000
commitd5d67f9657e1a9c29e3a017069c6f0a7dde9a6ad (patch)
tree02ea8087a4b8fc0ccc4911141b7bd85f42457e2a /src/Text/Pandoc
parente91cb556d298e9191ce3d23c8cc878e5b733621b (diff)
Updated haddocks for changes in Meta type.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1794 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'src/Text/Pandoc')
-rw-r--r--src/Text/Pandoc/Definition.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Text/Pandoc/Definition.hs b/src/Text/Pandoc/Definition.hs
index 18af11b7f..76d8712a0 100644
--- a/src/Text/Pandoc/Definition.hs
+++ b/src/Text/Pandoc/Definition.hs
@@ -35,10 +35,9 @@ import Data.Generics
data Pandoc = Pandoc Meta [Block] deriving (Eq, Read, Show, Typeable, Data)
--- | Bibliographic information for the document: title (list of 'Inline'),
--- authors (list of strings), date (string).
+-- | Bibliographic information for the document: title, authors, date.
data Meta = Meta [Inline] -- title
- [[Inline]] -- authors
+ [[Inline]] -- list of authors
[Inline] -- date
deriving (Eq, Show, Read, Typeable, Data)