Skip to content
Snippets Groups Projects
Commit 7b8fa8e7 authored by simonmar's avatar simonmar
Browse files

[haddock @ 2002-05-06 12:29:26 by simonmar]

Add missing type signature (a different workaround for the bug in
GHC's simplifier).
parent e6c08703
No related branches found
No related tags found
No related merge requests found
......@@ -40,7 +40,8 @@ ulpara :: { ParsedDoc }
olpara :: { ParsedDoc }
: '(n)' para { $2 }
para : seq { docParagraph $1 }
para :: { ParsedDoc }
: seq { docParagraph $1 }
seq :: { ParsedDoc }
: elem seq { DocAppend $1 $2 }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment