fantasyland / fantasy-laws

Property-based tests for FL-compatible ADTs
MIT License
33 stars 4 forks source link

sanctuary-scripts@2.0.x #9

Closed davidchambers closed 6 years ago

davidchambers commented 6 years ago

99% of the changes in this pull request are whitespace changes prompted by a recent sanctuary-style update. The f (x) (y) style makes the equivalences easier to read.

Before:

equals(traverse(C)(C)(u),
       C(map(traverse(G)(identity))(traverse(F)(identity)(u))))

After:

equals (traverse (C) (C) (u),
        C (map (traverse (G) (identity))
               (traverse (F) (identity) (u))))