(F)SLIT -> (f)sLit in TcTyFuns
authorIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 16:05:59 +0000 (16:05 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 16:05:59 +0000 (16:05 +0000)
compiler/typecheck/TcTyFuns.lhs

index 5a6f084..4c5be1c 100644 (file)
@@ -1211,9 +1211,9 @@ misMatchMsg :: TidyEnv -> (TcType, TcType) -> (TidyEnv, SDoc)
 misMatchMsg env0 (ty_act, ty_exp)
   = let (env1, pp_exp, extra_exp) = ppr_ty env0 ty_exp
        (env2, pp_act, extra_act) = ppr_ty env1 ty_act
 misMatchMsg env0 (ty_act, ty_exp)
   = let (env1, pp_exp, extra_exp) = ppr_ty env0 ty_exp
        (env2, pp_act, extra_act) = ppr_ty env1 ty_act
-        msg = sep [sep [ptext SLIT("Couldn't match expected type") <+> pp_exp, 
+        msg = sep [sep [ptext (sLit "Couldn't match expected type") <+> pp_exp, 
                        nest 7 $
                        nest 7 $
-                              ptext SLIT("against inferred type") <+> pp_act],
+                              ptext (sLit "against inferred type") <+> pp_act],
                   nest 2 (extra_exp $$ extra_act)]
     in
     (env2, msg)
                   nest 2 (extra_exp $$ extra_act)]
     in
     (env2, msg)