Test1: ```fsharp if foo then () else if bar then () ``` should become: ```fsharp if foo then () elif bar then () ``` --- Test2: ```fsharp if foo then () else if bar then () else () ``` should become (same): ```fsharp if foo then () else if bar then () else () ``` (should not change)
Test1:
should become:
Test2:
should become (same):
(should not change)