You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let _ =
match c with
| {issuer = _; (* TODO *)
_
} -> ()
yields
let _ =
match c with
| {
issuer = _;
(* TODO *)
_;
} ->
()
where there is trailing whitespace in the empty line before the (* TODO *). The behaviour can be reproduced with an empty .ocamlformat. Tested on the branch of #2537.
The text was updated successfully, but these errors were encountered:
yields
where there is trailing whitespace in the empty line before the
(* TODO *)
. The behaviour can be reproduced with an empty.ocamlformat
. Tested on the branch of #2537.The text was updated successfully, but these errors were encountered: