Skip to content

Commit

Permalink
[style] Add missing semi-colon (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Oct 5, 2016
1 parent f9274e1 commit aa48d13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/transports/websocket.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ WS.prototype.doOpen = function () {
try {
this.ws = BrowserWebSocket ? new WebSocket(uri) : new WebSocket(uri, protocols, opts);
} catch (err) {
return this.emit('error', err)
return this.emit('error', err);
}

if (this.ws.binaryType === undefined) {
Expand Down

0 comments on commit aa48d13

Please sign in to comment.