From cc3a1da543684a3c778c27a2a9fc11ae6b49c371 Mon Sep 17 00:00:00 2001 From: Jan Matousek Date: Thu, 18 Oct 2012 19:38:39 +0200 Subject: [PATCH] fix whitespace usage --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 786407a8ab..dd27dbdd78 100644 --- a/index.js +++ b/index.js @@ -883,9 +883,9 @@ commands.forEach(function (command) { // store db in this.select_db to restore it on reconnect RedisClient.prototype.select = function (db, callback) { - var self = this; + var self = this; - this.send_command('select', [db], function (err, res) { + this.send_command('select', [db], function (err, res) { if (err === null) { self.selected_db = db; }