Skip to content

Commit

Permalink
remove unnecessary brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
mengwong committed Oct 18, 2021
1 parent 7e71dab commit 5539fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mengwong/mp/src/Lib.hs
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ pRegRuleNormal = do
myTraceM $ "pRegRuleNormal: the specifier is " ++ show who
myTraceM $ "pRegRuleNormal: returning " ++ show toreturn
myTraceM $ "pRegRuleNormal: with appendix brs = " ++ show brs
return ( toreturn : (brs++ebrs) )
return ( toreturn : brs ++ ebrs )

mergePBRS :: [(Preamble, BoolRules)] -> (Preamble, BoolRules)
mergePBRS xs =
Expand Down

0 comments on commit 5539fde

Please sign in to comment.