#124 adds support for trailing Haddock comments in record fields. But if the user puts the Haddock comments on the same line, Fourmolu will force it to the next line:
------------------------ before
{ fooX :: Int -- ^ X
, fooY :: Int -- ^ Y
}
------------------------ after
{ fooX :: Int
-- ^ X
, fooY :: Int
-- ^ Y
}