Skip to content

Commit

Permalink
lint: Redundant brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
croyzor committed Dec 6, 2024
1 parent ca5df29 commit 837eeed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brat/Brat/Checker.hs
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ check' (Of n e) ((), unders) = case ?my of
(elems, unders, rightUnders) <- getVecs len unders
pure ((tgt, el):elems, (tgt, ty):unders, rightUnders)
getVecs _ unders = pure ([], [], unders)
check' Hope ((), ((NamedPort hope _, ty):unders)) = case (?my, ty) of
check' Hope ((), (NamedPort hope _, ty):unders) = case (?my, ty) of
(Braty, Left _k) -> do
fc <- req AskFC
req (ANewHope hope fc)
Expand Down

0 comments on commit 837eeed

Please sign in to comment.