diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2019-12-30 17:27:21 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2019-12-30 17:27:21 +0000 |
commit | b42d3ee3cc22aaa892d15c4ba2219a3bc53907a1 (patch) | |
tree | 119e7e8fc6455ba65f5b2fe9db8e688e7b4a49a7 /editors | |
parent | 28ef2ea4f98e7e5c4e1df73e2e120dea7d279357 (diff) | |
parent | 2d3ebc340622e0c54c51cda029e54fc94dac8126 (diff) |
Merge #2690
2690: Fix server config mispell in vscode extension r=matklad a=kiljacken
Fixes #2689
Co-authored-by: Emil Lauridsen <[email protected]>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/server.ts b/editors/code/src/server.ts index e1ad0520b..10dc079fb 100644 --- a/editors/code/src/server.ts +++ b/editors/code/src/server.ts | |||
@@ -46,7 +46,7 @@ export class Server { | |||
46 | lruCapacity: Server.config.lruCapacity, | 46 | lruCapacity: Server.config.lruCapacity, |
47 | maxInlayHintLength: Server.config.maxInlayHintLength, | 47 | maxInlayHintLength: Server.config.maxInlayHintLength, |
48 | cargoWatchEnable: Server.config.cargoWatchOptions.enable, | 48 | cargoWatchEnable: Server.config.cargoWatchOptions.enable, |
49 | cargoWatchArgumets: Server.config.cargoWatchOptions.arguments, | 49 | cargoWatchArgs: Server.config.cargoWatchOptions.arguments, |
50 | cargoWatchCommand: Server.config.cargoWatchOptions.command, | 50 | cargoWatchCommand: Server.config.cargoWatchOptions.command, |
51 | cargoWatchAllTargets: | 51 | cargoWatchAllTargets: |
52 | Server.config.cargoWatchOptions.allTargets, | 52 | Server.config.cargoWatchOptions.allTargets, |