Ocamlformat 0.27.0 reformatting code

I just upgraded from ocamlformat 0.26.2 to 0.27.0 and it is turning:

      // (* path *) Ret.text
      // (* workflow_idx *) Ret.(option smallint)
      // (* workspace *) Ret.text

into

      //
      (* path *)
      Ret.text
      //
      (* workflow_idx *)
      Ret.(option smallint)
      //
      (* workspace *)
      Ret.text

Any idea how I can tell it to not?

OCamlformat generally prefers comments to be at the end of lines. This works:

  // Ret.text (* path *)
  // Ret.(option smallint) (* workflow_idx *)
  // Ret.text (* workspace *)