about summary refs log tree commit diff
path: root/editors/code/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/utils')
-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 f62e2a346d7..da8be9eb179 100644
--- a/editors/code/src/utils/processes.ts
+++ b/editors/code/src/utils/processes.ts
@@ -12,7 +12,7 @@ const isLinux = process.platform === 'linux';
 // this is very complex, but is basically copy-pased from VSCode implementation here:
 // https://github.com/Microsoft/vscode-languageserver-node/blob/dbfd37e35953ad0ee14c4eeced8cfbc41697b47e/client/src/utils/processes.ts#L15
 
-// And see discussion at 
+// And see discussion at
 // https://github.com/rust-analyzer/rust-analyzer/pull/1079#issuecomment-478908109
 
 export function terminate(process: ChildProcess, cwd?: string): boolean {