From 05e9026aead008552ff0d1572214bba3131b0928 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Mon, 8 Jul 2013 08:16:10 -0500 Subject: [PATCH] Remove tab character --- lib/native/query.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/native/query.js b/lib/native/query.js index e3c36f3..e358caf 100644 --- a/lib/native/query.js +++ b/lib/native/query.js @@ -16,7 +16,7 @@ var NativeQuery = function(config, values, callback) { var c = utils.normalizeQueryConfig(config, values, callback); - this.name = c.name; + this.name = c.name; this.text = c.text; this.values = c.values; this.callback = c.callback;