summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChristiaan Baaij <christiaan.baaij@gmail.com>2021-06-24 19:39:51 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-09-17 09:35:18 -0400
commit885f17c89919d21815365da71eb7f9c489e5bfa3 (patch)
treef58aa1111ef2d229b3568a0ef00db6ec24ce8574 /docs
parent64923cf295ea914db458547432237a5ed1eff571 (diff)
downloadhaskell-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.rst4
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.