summaryrefslogtreecommitdiff
path: root/libraries/ghc-prim/GHC/Types.hs
diff options
context:
space:
mode:
authorBen Gamari <ben@well-typed.com>2019-09-24 17:29:36 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-09-27 22:13:16 -0400
commitf07862b483e8fb980d601d92148afe0979294ac8 (patch)
treed05310307f7d5a83f42c34cf36e6df4315920ad5 /libraries/ghc-prim/GHC/Types.hs
parentc6fb913c085d4e59a017bbfaf772145c485ffcd3 (diff)
downloadhaskell-f07862b483e8fb980d601d92148afe0979294ac8.tar.gz
ghc-prim: Fix documentation of Type
As pointed out in #17243, `Type` is not the only kind having values.
Diffstat (limited to 'libraries/ghc-prim/GHC/Types.hs')
-rw-r--r--libraries/ghc-prim/GHC/Types.hs2
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
{- *********************************************************************