Skip to content

Commit

Permalink
fix: clientProcessId typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jchavarri authored and rgrinberg committed Apr 18, 2024
1 parent cb338c7 commit 9066de5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
This enables more lsp features for non-.ml/.mli files. Though it still
depends on merlin's support. (#1237)

- Correctly accept the `--clientProcessId` flag. (#1242)

# 1.17.0

## Fixes
Expand Down
2 changes: 1 addition & 1 deletion lsp/src/cli.ml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ let args ?channel ?clientProcessId () =
let args =
match clientProcessId with
| None -> []
| Some pid -> [ "--clientPorcessId"; string_of_int pid ]
| Some pid -> [ "--clientProcessId"; string_of_int pid ]
in
match (channel : Channel.t option) with
| None -> args
Expand Down

0 comments on commit 9066de5

Please sign in to comment.