style(quotes): funny quotes changed to single quotes

This commit is contained in:
Damian Mee 2014-09-01 06:28:51 +02:00
parent 5e77655ddd
commit ab4970f84a

View file

@ -42,7 +42,7 @@ var sessions = {};
// that's basically a constructor
exports.init = function init(databaseHandle) {
if (!databaseHandle) {
throw new Error('`db` is required');
throw new Error('\'db\' is required');
}
db = databaseHandle;
@ -123,7 +123,7 @@ function loadOrConfigPlugin(pluginHandle, pluginType, currency, onChangeCb) {
exports.configure = function configure(config) {
if (config.exchanges.settings.lowBalanceMargin < 1) {
throw new Error('`settings.lowBalanceMargin` has to be >= 1');
throw new Error('\'settings.lowBalanceMargin\' has to be >= 1');
}
cachedConfig = config;