From 56789aea47efa22912034d4f337f14b23be23699 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ionu=C8=9B=20G=2E=20Stan?= Date: Sat, 29 Oct 2011 01:26:55 +0300 Subject: [PATCH] Fix lint errors Single quotes instead of double quotes --- src/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util.js b/src/util.js index 953732057..9765914ca 100644 --- a/src/util.js +++ b/src/util.js @@ -19,12 +19,12 @@ function backtrace() { try { throw new Error(); } catch (e) { - return e.stack ? e.stack.split('\n').slice(2).join('\n') : ""; + return e.stack ? e.stack.split('\n').slice(2).join('\n') : ''; } } function error(msg) { - log("Error: " + msg); + log('Error: ' + msg); log(backtrace()); throw new Error(msg); }