summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2010-01-07 15:11:27 +0000
committersimonpj@microsoft.com <unknown>2010-01-07 15:11:27 +0000
commit362750fbc91116ccc12b8b30d9a496803fa036f3 (patch)
tree7ad68eadf600ffe22a6d9d33df164e66bd8183c7 /compiler
parent0884a2cb09cd5f609b6163a225ca3b8cce942250 (diff)
downloadhaskell-362750fbc91116ccc12b8b30d9a496803fa036f3.tar.gz
Spelling error in comment
Diffstat (limited to 'compiler')
-rw-r--r--compiler/types/TyCon.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/types/TyCon.lhs b/compiler/types/TyCon.lhs
index 0959699356..963f93c2e3 100644
--- a/compiler/types/TyCon.lhs
+++ b/compiler/types/TyCon.lhs
@@ -836,7 +836,7 @@ isOpenSynTyCon :: TyCon -> Bool
isOpenSynTyCon tycon = isSynTyCon tycon && isOpenTyCon tycon
isDecomposableTyCon :: TyCon -> Bool
--- True iff we can deocmpose (T a b c) into ((T a b) c)
+-- True iff we can decompose (T a b c) into ((T a b) c)
-- Specifically NOT true of synonyms (open and otherwise) and coercions
isDecomposableTyCon (SynTyCon {}) = False
isDecomposableTyCon (CoTyCon {}) = False