summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTeo Camarasu <teofilcamarasu@gmail.com>2022-02-27 15:59:27 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-02-28 19:18:27 -0500
commit3e65ef05cae9a0192b26fae184cb5037b013d4c5 (patch)
tree5b81989417daa3bb9eb6ae08500da6fdfc99302c
parent065419affb4346bb81e91f8260e531a6e2342fa5 (diff)
downloadhaskell-3e65ef05cae9a0192b26fae184cb5037b013d4c5.tar.gz
template-haskell: fix typo in docstring for Overlap
-rw-r--r--libraries/template-haskell/Language/Haskell/TH/Syntax.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
index dd2bcd068c..2ec62d7859 100644
--- a/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
+++ b/libraries/template-haskell/Language/Haskell/TH/Syntax.hs
@@ -2390,7 +2390,7 @@ data Dec
data Overlap = Overlappable -- ^ May be overlapped by more specific instances
| Overlapping -- ^ May overlap a more general instance
| Overlaps -- ^ Both 'Overlapping' and 'Overlappable'
- | Incoherent -- ^ Both 'Overlappable' and 'Overlappable', and
+ | Incoherent -- ^ Both 'Overlapping' and 'Overlappable', and
-- pick an arbitrary one if multiple choices are
-- available.
deriving( Show, Eq, Ord, Data, Generic )