1

I'm generating documentation for my Haskell library using:

stack haddock --no-haddock-deps

And the resultant index.html page has an empty Signatures section.

Why is the Signatures section empty?

dbanas
  • 1,707
  • 14
  • 24
  • 1
    Does your library contain Backpack signatures? If yes, can you give us a reproducible example? – sjakobi Jul 27 '18 at 18:08

1 Answers1

0

Thanks to the comment from @sjakobi, I now understand that the Signatures section is populated with a module's Backpack signatures, which my module lacks. So, I shouldn't expect any content in that section.

dbanas
  • 1,707
  • 14
  • 24