reason icon indicating copy to clipboard operation
reason copied to clipboard

Polyvariants printing similar to variants

Open SanderSpies opened this issue 2 years ago • 1 comments

type align = [ | `Start | `End | `Center];

to

type align = [ 
  | `Start
  | `End 
  | `Center
];

Solves: https://github.com/reasonml/reason/issues/2706

SanderSpies avatar Apr 17 '23 16:04 SanderSpies

This broke some extension tests.

anmonteiro avatar Apr 21 '23 22:04 anmonteiro