summaryrefslogtreecommitdiff
path: root/compiler/deSugar/DsMonad.hs
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2017-02-07 11:55:16 +0100
committerGabor Greif <ggreif@gmail.com>2017-02-08 09:36:34 +0100
commitb990f656091cb6c960fb21f05791acf38a19abc1 (patch)
tree6810fbe0c2c2ed354d07747f6e883583dadf1ebe /compiler/deSugar/DsMonad.hs
parent512f157c2ac0d4b9d754dc83ba1df819eb766e70 (diff)
downloadhaskell-b990f656091cb6c960fb21f05791acf38a19abc1.tar.gz
More typos in comments [skip ci]
Diffstat (limited to 'compiler/deSugar/DsMonad.hs')
-rw-r--r--compiler/deSugar/DsMonad.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/deSugar/DsMonad.hs b/compiler/deSugar/DsMonad.hs
index f9533e391a..4f68100111 100644
--- a/compiler/deSugar/DsMonad.hs
+++ b/compiler/deSugar/DsMonad.hs
@@ -253,7 +253,7 @@ initDsTc thing_inside
initTcDsForSolver :: TcM a -> DsM (Messages, Maybe a)
-- Spin up a TcM context so that we can run the constraint solver
-- Returns any error messages generated by the constraint solver
--- and (Just res) if no error happened; Nothing if an errror happened
+-- and (Just res) if no error happened; Nothing if an error happened
--
-- Simon says: I'm not very happy about this. We spin up a complete TcM monad
-- only to immediately refine it to a TcS monad.