Skip to content

Commit c1b754b

Browse files
committed
chore: style fix
Signed-off-by: Rudi Grinberg <[email protected]> ps-id: b65da044-db23-4212-9fd3-062df43868c5
1 parent 3cfc918 commit c1b754b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ocaml-lsp-server/src/code_actions/action_mark_remove_unused.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ let rec mark_value_unused_edit name contexts =
6363
| Pattern { pat_desc = Tpat_var (ident, _); pat_loc = loc; _ } :: _ ->
6464
if Ident.name ident = name then
6565
let+ start = Position.of_lexical_position loc.loc_start in
66-
TextEdit.{ range = Range.create ~start ~end_:start; newText = "_" }
66+
{ TextEdit. range = Range.create ~start ~end_:start; newText = "_" }
6767
else None
6868
| _ :: cs -> mark_value_unused_edit name cs
6969
| _ -> None

0 commit comments

Comments
 (0)