Missing change re additional info in TcTyThing
[ghc-hetmet.git] / compiler / hsSyn / HsBinds.lhs
index 900b800..40b51ca 100644 (file)
@@ -318,11 +318,12 @@ data ExprCoFn
        -- Non-empty bindings, so that the identity coercion
        -- is always exactly CoHole
   | CoLet (LHsBinds Id)                -- let binds in []
-                               -- (ould be nicer to be core bindings)
+                               -- (would be nicer to be core bindings)
 
 instance Outputable ExprCoFn where 
   ppr co_fn = pprCoFn (ptext SLIT("<>")) co_fn
 
+pprCoFn :: SDoc -> ExprCoFn -> SDoc
 pprCoFn it CoHole = it
 pprCoFn it (CoCompose f1 f2) = pprCoFn (pprCoFn it f2) f1
 pprCoFn it (ExprCoFn co)     = it <+> ptext SLIT("`cast`") <+> pprParendType co