summaryrefslogtreecommitdiff
path: root/compiler/rename/RnNames.hs
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 /compiler/rename/RnNames.hs
parent5df92f6776b31b375a80865e7db1f330d929c18f (diff)
downloadhaskell-d213ab3fa0cc2a39d9f74df11c8a3451ac34411c.tar.gz
Fix misspellings of the word "instance" in comments
[ci skip]
Diffstat (limited to 'compiler/rename/RnNames.hs')
-rw-r--r--compiler/rename/RnNames.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rename/RnNames.hs b/compiler/rename/RnNames.hs
index ab27b6af5e..51a231c184 100644
--- a/compiler/rename/RnNames.hs
+++ b/compiler/rename/RnNames.hs
@@ -1466,7 +1466,7 @@ dupExport_ok :: Name -> IE RdrName -> IE RdrName -> Bool
-- Example of "yes" (Trac #2436)
-- module M( C(..), T(..) ) where
-- class C a where { data T a }
--- instace C Int where { data T Int = TInt }
+-- instance C Int where { data T Int = TInt }
--
-- Example of "yes" (Trac #2436)
-- module Foo ( T ) where