diff options
author | simonmar <unknown> | 2002-04-29 15:28:54 +0000 |
---|---|---|
committer | simonmar <unknown> | 2002-04-29 15:28:54 +0000 |
commit | 640c154ab1ae1da81f16139d3c5ced7b00b710f3 (patch) | |
tree | 9fbe7dd1eef553db832796ba7bd7570cc2be3e86 /src/Main.hs | |
parent | b7211e0436828a7e9ffe00a11850a4f25f7e9b26 (diff) |
[haddock @ 2002-04-29 15:28:54 by simonmar]
Allow '-- |' style annotations on constructors and record fields.
Diffstat (limited to 'src/Main.hs')
-rw-r--r-- | src/Main.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.hs b/src/Main.hs index dd7aac64..9873d2f8 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -445,7 +445,7 @@ collect name doc_so_far (decl:ds) = Nothing -> collect name (doc_so_far ++ str) ds Just n -> finishedDoc n doc_so_far (collect Nothing str ds) - HsDocCommentPrev str -> collect name (doc_so_far++str) ds + HsDocCommentPrev str -> collect name (doc_so_far ++ str) ds _other -> docsFromDecl decl ++ |