diff options
author | Simon Jakobi <simon.jakobi@gmail.com> | 2018-05-08 04:00:18 +0200 |
---|---|---|
committer | Alexander Biehl <alexbiehl@gmail.com> | 2018-05-07 19:00:18 -0700 |
commit | 2dd12f50b67feb77ae310a3af942ce3b058318e3 (patch) | |
tree | 297ab3406ae387ff046c1a27ffeb8acef351d681 | |
parent | 143094b0badbeb217e33e7da4ad4ba669c4e7bd5 (diff) |
Add docs for some DocH constructors (#814)
-rw-r--r-- | haddock-library/src/Documentation/Haddock/Types.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/haddock-library/src/Documentation/Haddock/Types.hs b/haddock-library/src/Documentation/Haddock/Types.hs index 005ec186..b5dea3d4 100644 --- a/haddock-library/src/Documentation/Haddock/Types.hs +++ b/haddock-library/src/Documentation/Haddock/Types.hs @@ -107,8 +107,10 @@ data DocH mod id | DocParagraph (DocH mod id) | DocIdentifier id | DocIdentifierUnchecked mod + -- ^ A qualified identifier that couldn't be resolved. | DocModule String | DocWarning (DocH mod id) + -- ^ This constructor has no counterpart in Haddock markup. | DocEmphasis (DocH mod id) | DocMonospaced (DocH mod id) | DocBold (DocH mod id) @@ -121,6 +123,7 @@ data DocH mod id | DocMathInline String | DocMathDisplay String | DocAName String + -- ^ A (HTML) anchor. | DocProperty String | DocExamples [Example] | DocHeader (Header (DocH mod id)) |