Skip to content

Commit afa4ca1

Browse files
committed
[js] fix errors found by make js-lint
1 parent 7719e1b commit afa4ca1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vm/js/nqp-runtime/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ exports.load_setting = function(settingName) {
6161

6262
exports.load_module = function(module) {
6363
saveCtx(module, function() {
64-
module = module.replace(/::/g,"/");
64+
module = module.replace(/::/g, '/');
6565
require(module);
6666
});
6767
};

0 commit comments

Comments
 (0)