<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi Cafe,<div class=""><br class=""></div><div class="">When instantiating a type class with type family, I see that haddock shows the data constructor for the type family as visible. This is what I would like to avoid. I would like to hide the details of the data constructor in the documentation.</div><div class=""><br class=""></div><div class="">An example is stated below:</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><font face="PT Mono" class="">-- | An implementation of the 'FCFS' queue strategy.</font></div><div class=""><div class=""><font face="PT Mono" class="">instance QueueStrategy BrIO FCFS where</font></div><div class=""><font face="PT Mono" class=""><br class=""></font></div><div class=""><font face="PT Mono" class="">  -- | A queue used by the 'FCFS' strategy.</font></div><div class=""><font face="PT Mono" class="">  newtype StrategyQueue BrIO FCFS a = FCFSQueue (LL.DoubleLinkedList BrIO a)</font></div><div class=""><font face="PT Mono" class=""><br class=""></font></div><div class=""><font face="PT Mono" class="">  newStrategyQueue s = fmap FCFSQueue LL.newList</font></div><div class=""><font face="PT Mono" class=""><br class=""></font></div><div class=""><font face="PT Mono" class="">  strategyQueueNull (FCFSQueue q) = LL.listNull q</font></div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">Here the FCFSQueue data constructor is visible together with all its contents in the documentation! I would like it would be hidden completely. At least, I would like to hide the contents.</div><div class=""><br class=""></div><div class="">Is it possible to do?</div><div class=""><br class=""></div><div class="">Thanks,</div><div class="">David</div></body></html>