aboutsummaryrefslogtreecommitdiff
path: root/src/Main.hs
diff options
context:
space:
mode:
authorsimonmar <unknown>2002-04-29 15:28:54 +0000
committersimonmar <unknown>2002-04-29 15:28:54 +0000
commit640c154ab1ae1da81f16139d3c5ced7b00b710f3 (patch)
tree9fbe7dd1eef553db832796ba7bd7570cc2be3e86 /src/Main.hs
parentb7211e0436828a7e9ffe00a11850a4f25f7e9b26 (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.hs2
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 ++