This repository was archived by the owner on Aug 3, 2024. It is now read-only.
This repository was archived by the owner on Aug 3, 2024. It is now read-only.
Haddock comments to class arguments #1527
Open
Description
I would like to add a haddock comment to class arguments like this:
class C
(a :: Type) -- ^ comment to a
(b :: Constraint) -- ^ comment to b
where
or (with -XStandaloneKindSignatures
)
type C
:: Type -- ^ comment to a
-> Constraint -- ^ comment to b
-> Constraint
class C a b where
However, as far as I can see, it's not possible in current version