Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[js] fix errors found by make js-lint
  • Loading branch information
pmurias committed Oct 6, 2015
1 parent 7719e1b commit afa4ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vm/js/nqp-runtime/runtime.js
Expand Up @@ -61,7 +61,7 @@ exports.load_setting = function(settingName) {

exports.load_module = function(module) {
saveCtx(module, function() {
module = module.replace(/::/g,"/");
module = module.replace(/::/g, '/');
require(module);
});
};
Expand Down

0 comments on commit afa4ca1

Please sign in to comment.