slightly improve a log message

This commit is contained in:
rhiannon morris 2024-05-12 20:30:26 +02:00
parent b556c2f099
commit d276a66abd
1 changed files with 2 additions and 1 deletions

View File

@ -916,7 +916,8 @@ parameters (loc : Loc) (ctx : TyContext d n)
(EqContext n -> DSubst d 0 -> Eff fs ()) -> Eff fs () (EqContext n -> DSubst d 0 -> Eff fs ()) -> Eff fs ()
eachCorner loc fvs act = do eachCorner loc fvs act = do
say "equal" 50 loc $ say "equal" 50 loc $
hsep $ "eachCorner: split on" :: map prettyBind' (getVars ctx fvs) let vars = map prettyBind' (getVars ctx fvs) in
hsep $ "eachCorner: split on" :: if null vars then ["(none)"] else vars
for_ (splits loc ctx.dctx fvs) $ \th => for_ (splits loc ctx.dctx fvs) $ \th =>
act (makeEqContext ctx th) th act (makeEqContext ctx th) th