Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 45e92a7

Browse files
committed
Fix trailing comma syntax error on electron 1.6.x
1 parent c247811 commit 45e92a7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
language: node_js
2-
node_js: node
2+
node_js:
3+
- node
4+
- lts/*
5+
# atom/electron 1.6.x uses node 7.x
6+
- 7
37
cache:
48
directories:
59
- "node_modules"

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ class RustLanguageClient extends AutoLanguageClient {
442442
this.disposables.add(atom.commands.add(
443443
'atom-workspace',
444444
'ide-rust:restart-all-language-servers',
445-
() => this._restartLanguageServers('Rust language servers restarted'),
445+
() => this._restartLanguageServers('Rust language servers restarted')
446446
))
447447
}
448448

0 commit comments

Comments
 (0)