File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -479,9 +479,9 @@ handleDocPrim prim = do
479479 _ -> []
480480 )
481481 ++ ( case prim of
482- PrimUOp u -> [describePrec (uPrec u)]
483- PrimBOp b -> [describePrec (bPrec b) <> describeFixity (assoc b)]
484- _ -> []
482+ PrimUOp u -> [describePrec (uPrec u)]
483+ PrimBOp b -> [describePrec (bPrec b) <> describeFixity (assoc b)]
484+ _ -> []
485485 )
486486 case attrs of
487487 [] -> pure ()
Original file line number Diff line number Diff line change @@ -902,8 +902,8 @@ parseLet =
902902 TLet
903903 <$> ( reserved " let"
904904 *> ( bind
905- <$> (toTelescope <$> (parseBinding `sepBy` comma))
906- <*> (reserved " in" *> parseTerm)
905+ <$> (toTelescope <$> (parseBinding `sepBy` comma))
906+ <*> (reserved " in" *> parseTerm)
907907 )
908908 )
909909
Original file line number Diff line number Diff line change @@ -658,9 +658,9 @@ simplify origVM cs =
658658 simplifyOne' (TyCon c1@ (CContainer ctr1) tys1 :<: TyCon (CContainer ctr2) tys2) =
659659 ssConstraints
660660 %= ( ( (TyAtom ctr1 :<: TyAtom ctr2)
661- : zipWith3 variance (arity c1) tys1 tys2
661+ : zipWith3 variance (arity c1) tys1 tys2
662662 )
663- ++
663+ ++
664664 )
665665 simplifyOne' (TyCon c1 tys1 :<: TyCon c2 tys2)
666666 | c1 /= c2 = throw NoUnify
You can’t perform that action at this time.
0 commit comments