diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-02-08 12:54:33 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2021-02-08 12:54:33 -0500 |
commit | e57d82dde105ffbfcb27ab261041c97b4dd0150a (patch) | |
tree | e4716c076ef5f05d63235bbf475f939fa1ed402f /haddock-api/src/Haddock/Interface/Json.hs | |
parent | b995bfe84f9766e23ff78d7ccd520ec7d8cdbebc (diff) | |
parent | 4f1a309700106b62831309931e449a603093f521 (diff) |
Merge remote-tracking branch 'upstream/ghc-head' into ghc-head
Diffstat (limited to 'haddock-api/src/Haddock/Interface/Json.hs')
-rw-r--r-- | haddock-api/src/Haddock/Interface/Json.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haddock-api/src/Haddock/Interface/Json.hs b/haddock-api/src/Haddock/Interface/Json.hs index 9b80d98f..92fb2e75 100644 --- a/haddock-api/src/Haddock/Interface/Json.hs +++ b/haddock-api/src/Haddock/Interface/Json.hs @@ -98,9 +98,9 @@ jsonDoc (DocIdentifierUnchecked modName) = jsonObject , ("modName", jsonString (showModName modName)) ] -jsonDoc (DocModule s) = jsonObject +jsonDoc (DocModule (ModLink m _l)) = jsonObject [ ("tag", jsonString "DocModule") - , ("string", jsonString s) + , ("string", jsonString m) ] jsonDoc (DocWarning x) = jsonObject |