[minor] Update whitespace

This commit is contained in:
indexzero 2012-01-02 17:14:03 -05:00
parent fdb73f007b
commit 9e9e37bb84

View file

@ -42,9 +42,10 @@ var Provider = exports.Provider = function (options) {
['defaults', 'overrides'].forEach(function (type) { ['defaults', 'overrides'].forEach(function (type) {
Provider.prototype[type] = function (options) { Provider.prototype[type] = function (options) {
options = options || {}; options = options || {};
if(!options.type) { if (!options.type) {
options.type = 'literal'; options.type = 'literal';
} }
return this.add(type, options); return this.add(type, options);
}; };
}); });