summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPi Delport <pi@well-typed.com>2022-08-29 09:58:19 +0200
committersheaf <sam.derbyshire@gmail.com>2022-08-30 22:40:46 +0000
commit9d5ad7c4bb1bd2b450fa13afcf95e3370c53232d (patch)
tree265363eca5a8525121a1df7d31c04d8411738a84
parent451b1d90cf14e8fb3f12b1b65d8027717093556a (diff)
downloadhaskell-9d5ad7c4bb1bd2b450fa13afcf95e3370c53232d.tar.gz
Fix typo in Any docs: stray "--"
-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 28aedb7240..099c48b7bd 100644
--- a/libraries/ghc-prim/GHC/Types.hs
+++ b/libraries/ghc-prim/GHC/Types.hs
@@ -143,7 +143,7 @@ data Symbol
-- | The type constructor 'Any' is type to which you can unsafely coerce any
-- lifted type, and back. More concretely, for a lifted type @t@ and
--- value @x :: t@, -- @unsafeCoerce (unsafeCoerce x :: Any) :: t@ is equivalent
+-- value @x :: t@, @unsafeCoerce (unsafeCoerce x :: Any) :: t@ is equivalent
-- to @x@.
--
type family Any :: k where { }