Browse Source

doc: fix a function name in repl.md

`eval` => `myEval` to not shadow the global `eval`

PR-URL: https://github.com/nodejs/node/pull/10244
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v7.x
Vse Mozhet Byt 8 years ago
committed by Evan Lucas
parent
commit
f281b190d5
  1. 2
      doc/api/repl.md

2
doc/api/repl.md

@ -186,7 +186,7 @@ multi-line input, the eval function can return an instance of `repl.Recoverable`
to the provided callback function: to the provided callback function:
```js ```js
function eval(cmd, context, filename, callback) { function myEval(cmd, context, filename, callback) {
let result; let result;
try { try {
result = vm.runInThisContext(cmd); result = vm.runInThisContext(cmd);

Loading…
Cancel
Save