From c0d73e6de1b59003a01c58733eabee9c33d1f56b Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Mon, 17 Feb 2014 16:17:20 -0800 Subject: [PATCH] lint: fix missing semi colon in repl --- lib/repl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/repl.js b/lib/repl.js index 86c99b5b87b..823f36c34ab 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -188,7 +188,7 @@ function REPLServer(prompt, stream, eval_, useGlobal, ignoreUndefined) { self.outputStream, complete, options.terminal - ]) + ]); self.setPrompt(!util.isUndefined(prompt) ? prompt : '> ');