Browse Source

doc: Remove extra space in REPL example

PR-URL: https://github.com/nodejs/node/pull/6447
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Brian White <mscdex@mscdex.net>
v6.x
Juan 9 years ago
committed by Jeremiah Senkpiel
parent
commit
8eb87ee239
  1. 2
      doc/api/repl.md

2
doc/api/repl.md

@ -13,7 +13,7 @@ dropped into the REPL. It has simplistic emacs line-editing.
```
$ node
Type '.help' for options.
> a = [ 1, 2, 3];
> a = [1, 2, 3];
[ 1, 2, 3 ]
> a.forEach((v) => {
... console.log(v);

Loading…
Cancel
Save