From 12a1dd653e3e419a0a864a47bc84f087ba1bd7b6 Mon Sep 17 00:00:00 2001 From: Juan Date: Thu, 28 Apr 2016 11:13:38 -0400 Subject: [PATCH] doc: Remove extra space in REPL example --- doc/api/repl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/repl.md b/doc/api/repl.md index f77833ea472932..47984e67123648 100644 --- a/doc/api/repl.md +++ b/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);