You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As far as I know, it is currently not possible to include Haddock documentation in the code generated by Template Haskell (see the related ticket). As a consequence, declarations generated by functions like makeTaggedEffect, makeTagger and makeUntagged currently have no documentation. This is no big problem, since the documentation is usually attached to the tagged counterparts of the generated declarations, but it is a situation that can be improved nonetheless.
For single declarations generated by makeUntagged, one can currently document them like this ...
--| The untagged version of 'runLocalFileSystem''.
makeUntagged ['runLocalFileSystem']
... but in the future, I would like to copy the documentation over from the original tagged declarations, which means that no manual handiwork is needed. Guess we have to wait until the related ticket is resolved.
The text was updated successfully, but these errors were encountered:
As far as I know, it is currently not possible to include Haddock documentation in the code generated by Template Haskell (see the related ticket). As a consequence, declarations generated by functions like
makeTaggedEffect
,makeTagger
andmakeUntagged
currently have no documentation. This is no big problem, since the documentation is usually attached to the tagged counterparts of the generated declarations, but it is a situation that can be improved nonetheless.For single declarations generated by
makeUntagged
, one can currently document them like this ...... but in the future, I would like to copy the documentation over from the original tagged declarations, which means that no manual handiwork is needed. Guess we have to wait until the related ticket is resolved.
The text was updated successfully, but these errors were encountered: