Skip to content

Commit

Permalink
Improve code quality in GenSML.hs
Browse files Browse the repository at this point in the history
  • Loading branch information
jazullo committed Oct 3, 2023
1 parent 2935674 commit d1c5478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gibbon-compiler/src/Gibbon/L1/GenSML.hs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ppAp var pes =
parens $ var <> case pes of
[] -> empty -- don't confuse with application to unit (1 arg)
[x] -> space <> ppE x
_ -> parens (interleave "," $ ppE <$> pes)
_ -> parens $ interleave "," $ ppE <$> pes

ppVar :: Var -> Doc
ppVar = text . getVar
Expand Down

0 comments on commit d1c5478

Please sign in to comment.