diff options
author | Pi Delport <pi@well-typed.com> | 2022-08-29 09:58:19 +0200 |
---|---|---|
committer | sheaf <sam.derbyshire@gmail.com> | 2022-08-30 22:40:46 +0000 |
commit | 9d5ad7c4bb1bd2b450fa13afcf95e3370c53232d (patch) | |
tree | 265363eca5a8525121a1df7d31c04d8411738a84 /libraries | |
parent | 451b1d90cf14e8fb3f12b1b65d8027717093556a (diff) | |
download | haskell-9d5ad7c4bb1bd2b450fa13afcf95e3370c53232d.tar.gz |
Fix typo in Any docs: stray "--"
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 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 { } |