aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2019-04-02 10:43:09 +0100
committerEdwin Cheng <[email protected]>2019-04-02 10:43:09 +0100
commitb60e2f779b28f654dbd5a2657c668de8452933c6 (patch)
treefe89a85fb4a5835aadc871842a194343d163be65 /editors
parent9d269849987fbe374b0f76a4893fdf9d867b8b84 (diff)
Fix prettier error
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/utils/processes.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/utils/processes.ts b/editors/code/src/utils/processes.ts
index f62e2a346..da8be9eb1 100644
--- a/editors/code/src/utils/processes.ts
+++ b/editors/code/src/utils/processes.ts
@@ -12,7 +12,7 @@ const isLinux = process.platform === 'linux';
12// this is very complex, but is basically copy-pased from VSCode implementation here: 12// this is very complex, but is basically copy-pased from VSCode implementation here:
13// https://github.com/Microsoft/vscode-languageserver-node/blob/dbfd37e35953ad0ee14c4eeced8cfbc41697b47e/client/src/utils/processes.ts#L15 13// https://github.com/Microsoft/vscode-languageserver-node/blob/dbfd37e35953ad0ee14c4eeced8cfbc41697b47e/client/src/utils/processes.ts#L15
14 14
15// And see discussion at 15// And see discussion at
16// https://github.com/rust-analyzer/rust-analyzer/pull/1079#issuecomment-478908109 16// https://github.com/rust-analyzer/rust-analyzer/pull/1079#issuecomment-478908109
17 17
18export function terminate(process: ChildProcess, cwd?: string): boolean { 18export function terminate(process: ChildProcess, cwd?: string): boolean {