Hi !
When writing a sequence of instructions with interleaved comments, ocamlformat with profile conventional adds a extra line before the comment:
let () =
print_string "Hello, world!";
(* This is a comment *)
print_newline ()
is formatted to
let () =
print_string "Hello, world!";
(* This is a comment *)
print_newline ()