slightly improve a log message
This commit is contained in:
parent
b556c2f099
commit
d276a66abd
1 changed files with 2 additions and 1 deletions
|
@ -916,7 +916,8 @@ parameters (loc : Loc) (ctx : TyContext d n)
|
|||
(EqContext n -> DSubst d 0 -> Eff fs ()) -> Eff fs ()
|
||||
eachCorner loc fvs act = do
|
||||
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 =>
|
||||
act (makeEqContext ctx th) th
|
||||
|
||||
|
|
Loading…
Reference in a new issue