Fix parentheses typo in setPlayingGame args list

This commit is contained in:
meew0
2015-12-31 20:29:15 +01:00
parent ea3ac96f13
commit 9325e1fbb5

View File

@@ -495,7 +495,7 @@ export default class Client extends EventEmitter {
return this.setStatusIdle(callback);
}
setPlayingGame(game, callback = (/*err, {}*/ => { })) {
setPlayingGame(game, callback = (/*err, {}*/) => { }) {
return this.setStatus(null, game, callback);
}
}