OCamlformat currently converts the following input
let () =
(* Open the repo *)
initialise >>=
(* Perform a subsequent action *)
subsequent_action >|=
(* Keep going... *)
another_action |> fun t ->
(* And finally do this *)
final_action t
to this output:
let () =
(* Open the repo *)
initialise >>= (* Perform a subsequent action *)
subsequent_action >|= (* Keep going... *)
another_action
|> fun t ->
(* And finally do this *)
final_action t
which looks odd to me.