summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2022-01-06 20:02:11 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-01-07 18:25:41 -0500
commitf583eb8e5e7077f77fba035a454fafd945d4a4ea (patch)
treec6ca9e28d2c2c07faed9dfdf0ceb4b006e9d97e0 /libraries
parent7b783c9da649899bdce34b6e746fa8704b667f28 (diff)
downloadhaskell-f583eb8e5e7077f77fba035a454fafd945d4a4ea.tar.gz
Remove dangling references to Note [Type-checking overloaded labels]
that note was removed in 4196969c53c55191e644d9eb258c14c2bc8467da
Diffstat (limited to 'libraries')
-rw-r--r--libraries/base/GHC/OverloadedLabels.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/libraries/base/GHC/OverloadedLabels.hs b/libraries/base/GHC/OverloadedLabels.hs
index 129daab30e..429a9889bb 100644
--- a/libraries/base/GHC/OverloadedLabels.hs
+++ b/libraries/base/GHC/OverloadedLabels.hs
@@ -38,9 +38,9 @@
-- An overloaded label is represented by the 'HsOverLabel' constructor
-- of 'HsExpr', which stores the 'FastString' text of the label and an
-- optional id for the 'fromLabel' function to use (if
--- RebindableSyntax is enabled) . The type-checker transforms it into
--- a call to 'fromLabel'. See Note [Type-checking overloaded labels]
--- in GHC.Tc.Gen.Expr for more details in how type-checking works.
+-- RebindableSyntax is enabled) . The renamer transforms it into
+-- a call to 'fromLabel'.
+-- See Note [Handling overloaded and rebindable constructs] in GHC.Rename.Expr.
module GHC.OverloadedLabels
( IsLabel(..)