diff options
author | Ben Gamari <ben@well-typed.com> | 2019-09-24 17:29:36 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-27 22:13:16 -0400 |
commit | f07862b483e8fb980d601d92148afe0979294ac8 (patch) | |
tree | d05310307f7d5a83f42c34cf36e6df4315920ad5 | |
parent | c6fb913c085d4e59a017bbfaf772145c485ffcd3 (diff) | |
download | haskell-f07862b483e8fb980d601d92148afe0979294ac8.tar.gz |
ghc-prim: Fix documentation of Type
As pointed out in #17243, `Type` is not the only kind
having values.
-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 e60e011cf9..1cb3b6439d 100644 --- a/libraries/ghc-prim/GHC/Types.hs +++ b/libraries/ghc-prim/GHC/Types.hs @@ -56,7 +56,7 @@ infixr 5 : -- | The kind of constraints, like @Show a@ data Constraint --- | The kind of types with values. For example @Int :: Type@. +-- | The kind of types with lifted values. For example @Int :: Type@. type Type = TYPE 'LiftedRep {- ********************************************************************* |