Skip to content

Commit

Permalink
Remove redundant parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoBecker authored Mar 4, 2020
1 parent d2261da commit 2876854
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basis/RuntimeProgScript.sml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ val _ = append_prog abort

val _ = process_topdecs `
fun assert cond msg =
if (cond)
if cond
then ()
else (debugMsg (msg);
else (debugMsg msg;
abort());`
|> append_prog;

Expand Down

0 comments on commit 2876854

Please sign in to comment.