diff options
author | Christiaan Baaij <christiaan.baaij@gmail.com> | 2021-06-24 19:39:51 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-17 09:35:18 -0400 |
commit | 885f17c89919d21815365da71eb7f9c489e5bfa3 (patch) | |
tree | f58aa1111ef2d229b3568a0ef00db6ec24ce8574 /docs | |
parent | 64923cf295ea914db458547432237a5ed1eff571 (diff) | |
download | haskell-885f17c89919d21815365da71eb7f9c489e5bfa3.tar.gz |
Improve error messages involving operators from Data.Type.Ord
Fixes #20009
Diffstat (limited to 'docs')
-rw-r--r-- | docs/users_guide/9.2.1-notes.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/users_guide/9.2.1-notes.rst b/docs/users_guide/9.2.1-notes.rst index c1b8d94661..a80218098e 100644 --- a/docs/users_guide/9.2.1-notes.rst +++ b/docs/users_guide/9.2.1-notes.rst @@ -393,3 +393,7 @@ Eventlog (True, True) -> 1 (False, False) -> 2 (True, False) | considerAccessible -> 3 -- No warning! + +- A new ``GHC.TypeError`` module is created which exposes functionality related + to custom type errors. ``TypeError`` is re-exported from ``GHC.TypeLits`` for + backwards compatibility. |