summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2015-12-14 10:43:23 +0100
committerGabor Greif <ggreif@gmail.com>2015-12-14 10:57:05 +0100
commit65920c9e6a17094c3a0abbdbed5ab01f8524850e (patch)
tree88374635449b36a150ccdd54f7bd7628c7563fea /compiler
parentbaed2f5a26a5d4c4e951bd8f003f71fca3ef45e8 (diff)
downloadhaskell-65920c9e6a17094c3a0abbdbed5ab01f8524850e.tar.gz
Some more typos in comments
Diffstat (limited to 'compiler')
-rw-r--r--compiler/typecheck/TcSimplify.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/typecheck/TcSimplify.hs b/compiler/typecheck/TcSimplify.hs
index 190c6c4e66..261abd0991 100644
--- a/compiler/typecheck/TcSimplify.hs
+++ b/compiler/typecheck/TcSimplify.hs
@@ -425,11 +425,11 @@ tcCheckSatisfiability :: Bag EvVar -> TcM Bool
tcCheckSatisfiability givens
= do { lcl_env <- TcM.getLclEnv
; let given_loc = mkGivenLoc topTcLevel UnkSkol lcl_env
- ; traceTc "checkSatisfiabilty {" (ppr givens)
+ ; traceTc "checkSatisfiability {" (ppr givens)
; (res, _ev_binds) <- runTcS $
do { cts <- solveSimpleGivens given_loc (bagToList givens)
; return (not (isEmptyBag cts)) }
- ; traceTc "checkSatisfiabilty }" (ppr res)
+ ; traceTc "checkSatisfiability }" (ppr res)
; return (not res) }
{-