From bca61518928b56d3e864cf297c90835da088e245 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Fri, 9 Dec 2016 00:00:29 +0300 Subject: [PATCH] fix lint --- src/database/mongo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/database/mongo.js b/src/database/mongo.js index 7d5131f800..5271202b25 100644 --- a/src/database/mongo.js +++ b/src/database/mongo.js @@ -140,7 +140,7 @@ }); }; - module.createIndices = function(callback) { + module.createIndices = function (callback) { function createIndex(collection, index, options, callback) { module.client.collection(collection).createIndex(index, options, callback); }