summaryrefslogtreecommitdiff
path: root/testsuite/tests/deriving
diff options
context:
space:
mode:
authorRyan Scott <ryan.gl.scott@gmail.com>2016-07-18 09:14:36 -0400
committerRyan Scott <ryan.gl.scott@gmail.com>2016-07-18 09:14:36 -0400
commitd213ab3fa0cc2a39d9f74df11c8a3451ac34411c (patch)
tree2aa55498f07af24806e8c23c2037ac66a18a91a5 /testsuite/tests/deriving
parent5df92f6776b31b375a80865e7db1f330d929c18f (diff)
downloadhaskell-d213ab3fa0cc2a39d9f74df11c8a3451ac34411c.tar.gz
Fix misspellings of the word "instance" in comments
[ci skip]
Diffstat (limited to 'testsuite/tests/deriving')
-rw-r--r--testsuite/tests/deriving/should_compile/drv015.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/deriving/should_compile/drv015.hs b/testsuite/tests/deriving/should_compile/drv015.hs
index b8575b2970..f76da45552 100644
--- a/testsuite/tests/deriving/should_compile/drv015.hs
+++ b/testsuite/tests/deriving/should_compile/drv015.hs
@@ -1,7 +1,7 @@
-- July 07: I'm changing this from "should_compile" to "should_fail".
-- It would generate an instance decl like
--- insance (Show (f a), Show (g a)) => Show (Pair1 f g a)
+-- instance (Show (f a), Show (g a)) => Show (Pair1 f g a)
-- and that is not Haskell 98.
--
-- See Note [Exotic derived instance contexts] in TcSimplify.