Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: Remove extra space in REPL example
  • Loading branch information
Juan committed Apr 28, 2016
commit 12a1dd653e3e419a0a864a47bc84f087ba1bd7b6
2 changes: 1 addition & 1 deletion doc/api/repl.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down