We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Formatting of Haddock comments in the export list of module headers leads to semantic errors with Haddock. For example, the following code
( DataTypeI , DataTypeII(DataConstructor) -- * Haddock heading , name )
is formatted by Brittany to
( DataTypeI , DataTypeII ( DataConstructor -- * Haddock heading ) , name )
which throws a Haddock error of the form
parse error on input ‘-- * Haddock heading’ source > | source > 23 | -- * Haddock heading source > | ^^^^^^^^^^^^
See also issue #231.
The text was updated successfully, but these errors were encountered:
Fix moving comment in export list (haddock header) (#281)
38cdd15
I think this is a duplicate of #220.
Sorry, something went wrong.
lspitzner
No branches or pull requests
Formatting of Haddock comments in the export list of module headers leads to semantic errors with Haddock. For example, the following code
is formatted by Brittany to
which throws a Haddock error of the form
See also issue #231.
The text was updated successfully, but these errors were encountered: