From 362750fbc91116ccc12b8b30d9a496803fa036f3 Mon Sep 17 00:00:00 2001 From: "simonpj@microsoft.com" Date: Thu, 7 Jan 2010 15:11:27 +0000 Subject: [PATCH] Spelling error in comment --- compiler/types/TyCon.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/types/TyCon.lhs b/compiler/types/TyCon.lhs index 0959699..963f93c 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 -- 1.7.10.4