summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2017-04-10 14:07:42 -0400
committerBen Gamari <ben@smart-cactus.org>2017-04-10 20:55:43 -0400
commit40a2ed058785d6caaf38d938f51659476622b29b (patch)
tree2db56f3cf08b2c0bce9bdd1a0fd299261a83fb9b /libraries
parent42ef0845d0d2a7cc524e7048502f651d66f6a543 (diff)
downloadhaskell-40a2ed058785d6caaf38d938f51659476622b29b.tar.gz
base: Fix erroneous reference to Data.Reflection in documentation
Diffstat (limited to 'libraries')
-rw-r--r--libraries/base/Data/Typeable.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/Typeable.hs b/libraries/base/Data/Typeable.hs
index 4268619fd1..6157e82b1f 100644
--- a/libraries/base/Data/Typeable.hs
+++ b/libraries/base/Data/Typeable.hs
@@ -31,7 +31,7 @@
-- Since GHC 8.2, GHC has supported type-indexed type representations.
-- "Data.Typeable" provides type representations which are qualified over this
-- index, providing an interface very similar to the "Typeable" notion seen in
--- previous releases. For the type-indexed interface, see "Data.Reflection".
+-- previous releases. For the type-indexed interface, see "Type.Reflection".
--
-- Since GHC 7.8, 'Typeable' is poly-kinded. The changes required for this might
-- break some old programs involving 'Typeable'. More details on this, including