diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2017-05-04 17:26:41 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2017-05-04 17:27:08 +0100 |
commit | 2a09700149732df529cfcb506932c524e7851b4a (patch) | |
tree | 43bd257aaaf94901fa6a410dceca6bf7b0ed6da9 /libraries | |
parent | 2a33f172cc7788020822b7a1d022af9348997396 (diff) | |
download | haskell-2a09700149732df529cfcb506932c524e7851b4a.tar.gz |
Comments only, about Typeable/TypeRep/KindRep
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/ghc-prim/GHC/Types.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/ghc-prim/GHC/Types.hs b/libraries/ghc-prim/GHC/Types.hs index a4b7a91b59..3756c58827 100644 --- a/libraries/ghc-prim/GHC/Types.hs +++ b/libraries/ghc-prim/GHC/Types.hs @@ -450,7 +450,7 @@ type KindBndr = Int #endif -- | The representation produced by GHC for conjuring up the kind of a --- 'TypeRep'. +-- 'TypeRep'. See Note [Representing TyCon kinds: KindRep] in TcTypeable. data KindRep = KindRepTyConApp TyCon [KindRep] | KindRepVar !KindBndr | KindRepApp KindRep KindRep |