summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2020-02-02 17:58:03 (GMT)
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-02-04 02:14:24 (GMT)
commit54dfa94a36a564e5d092aa566d4670c7e008f152 (patch)
treee017d9b50f5e3d518fdb7fa714ff2d3c23f85dc5
parent859db7d639da08622a76a94b85bc9b2b27b8aabc (diff)
downloadghc-54dfa94a36a564e5d092aa566d4670c7e008f152.zip
ghc-54dfa94a36a564e5d092aa566d4670c7e008f152.tar.gz
ghc-54dfa94a36a564e5d092aa566d4670c7e008f152.tar.bz2
Fix docs for FrontendResult
Other variant was removed in ac1a379363618a6f2f17fff65ce9129164b6ef30 but docs were no changed.
-rw-r--r--compiler/typecheck/TcRnTypes.hs8
1 files changed, 3 insertions, 5 deletions
diff --git a/compiler/typecheck/TcRnTypes.hs b/compiler/typecheck/TcRnTypes.hs
index 8a299d3..2310b6f 100644
--- a/compiler/typecheck/TcRnTypes.hs
+++ b/compiler/typecheck/TcRnTypes.hs
@@ -343,11 +343,9 @@ data DsMetaVal
************************************************************************
-}
--- | 'FrontendResult' describes the result of running the
--- frontend of a Haskell module. Usually, you'll get
--- a 'FrontendTypecheck', since running the frontend involves
--- typechecking a program, but for an hs-boot merge you'll
--- just get a ModIface, since no actual typechecking occurred.
+-- | 'FrontendResult' describes the result of running the frontend of a Haskell
+-- module. Currently one always gets a 'FrontendTypecheck', since running the
+-- frontend involves typechecking a program. hs-sig merges are not handled here.
--
-- This data type really should be in HscTypes, but it needs
-- to have a TcGblEnv which is only defined here.