diff options
author | Edwin Cheng <[email protected]> | 2019-03-31 14:01:51 +0100 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2019-04-02 08:03:30 +0100 |
commit | 6971c7f1185fb7c1c0ce5f19867b999de71b5937 (patch) | |
tree | f38dd27f84e00194a56873db809e129afb5f9a5a /editors/code | |
parent | ac8f35019bd6224a0c2b085381dde2efc8888dc1 (diff) |
Fixed tslint error
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/commands/runnables.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts index 722db158a..0adb85d5f 100644 --- a/editors/code/src/commands/runnables.ts +++ b/editors/code/src/commands/runnables.ts | |||
@@ -196,6 +196,6 @@ export async function interactivelyStartCargoWatch(context: vscode.ExtensionCont | |||
196 | } | 196 | } |
197 | 197 | ||
198 | 198 | ||
199 | let validater = new CargoWatchProvider(); | 199 | const validater = new CargoWatchProvider(); |
200 | validater.activate(context.subscriptions); | 200 | validater.activate(context.subscriptions); |
201 | } | 201 | } |