Skip to content

Commit db8d809

Browse files
committed
Add absolute issue URL
1 parent 761e8df commit db8d809

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ function REPLServer(prompt,
538538
cmd = `(${cmd})`;
539539
self.wrappedCmd = true;
540540
} else {
541-
// Mitigate vm #548 issue
541+
// Mitigate https://github.com/nodejs/node/issues/548
542542
cmd = cmd.replace(/^\s*function\s+([^(]+)/,
543543
(_, name) => `var ${name} = function ${name}`);
544544
}

test/parallel/test-repl.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ function error_test() {
328328
// or block comment. https://github.com/nodejs/node/issues/3611
329329
{ client: client_unix, send: 'a = 3.5e',
330330
expect: /^SyntaxError: Invalid or unexpected token/ },
331-
// Mitigate #548 issue
331+
// Mitigate https://github.com/nodejs/node/issues/548
332332
{ client: client_unix, send: 'function name(){ return "node"; };name()',
333333
expect: "'node'\n" + prompt_unix },
334334
{ client: client_unix, send: 'function name(){ return "nodejs"; };name()',

0 commit comments

Comments
 (0)