Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Take this example:

{-# OPTIONS_HADDOCK ignore-exports #-}
module HaddockTest (e1) where

-- * Exported

-- | This is exported.
e1 :: Int
e1 = 1

-- * Private

-- | This is not exported.
p1 :: Int
p1 = 1

Strangely, the doc-string for the non-exported declaration is ignored, even though we get the structure otherwise correctly:

Haddock output shows e1 with doc, p1 without.

Does anyone have a clue? For the record, invoking via cabal haddock --internal doesn't help, nor does haddock --ignore-all-exports.

share|improve this question
Seems to be a bug in haddock-2.10. The doc string for p1 is included by 2.9.2 (ghc-7.0.4) and 2.9.4 (ghc-7.2.2). – Daniel Fischer Jun 7 '12 at 23:02
@DanielFischer: Thanks for the tip. I couldn't be sure if that was the case, or if it was just me. – Arlen Jun 7 '12 at 23:08
It could still be just we two. But bug is more likely. – Daniel Fischer Jun 7 '12 at 23:10
@DanielFischer: would you like to submit your comment as the answer, so I might accept it? – Arlen Jun 16 '12 at 7:46

1 Answer

up vote 1 down vote accepted

It's a bug in haddock-2.10, reported in March and fixed soon after, but the haddock shipped with GHC-7.4.1 was affected. Presumably the haddock shipped with 7.4.2 includes the fix (haven't built 7.4.2 yet).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.