(F)SLIT -> (f)sLit in InstEnv
authorIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 14:10:45 +0000 (14:10 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 12 Apr 2008 14:10:45 +0000 (14:10 +0000)
compiler/types/InstEnv.lhs

index c11218d..774808d 100644 (file)
@@ -133,13 +133,13 @@ pprInstance :: Instance -> SDoc
 -- Prints the Instance as an instance declaration
 pprInstance ispec
   = hang (pprInstanceHdr ispec)
-       2 (ptext SLIT("--") <+> pprNameLoc (getName ispec))
+       2 (ptext (sLit "--") <+> pprNameLoc (getName ispec))
 
 -- * pprInstanceHdr is used in VStudio to populate the ClassView tree
 pprInstanceHdr :: Instance -> SDoc
 -- Prints the Instance as an instance declaration
 pprInstanceHdr ispec@(Instance { is_flag = flag })
-  = ptext SLIT("instance") <+> ppr flag
+  = ptext (sLit "instance") <+> ppr flag
     <+> sep [pprThetaArrow theta, pprClassPred clas tys]
   where
     (_, theta, clas, tys) = instanceHead ispec