From 61741f9a83503e6fc198bb891b4197386888b9f2 Mon Sep 17 00:00:00 2001 From: Ryunosuke SATO Date: Tue, 11 Dec 2012 19:13:22 +0900 Subject: [PATCH] repl: fix how to module requiring in code comment This module requiring style is old. This API has been changed in Node 0.1.16 726865af. --- lib/repl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/repl.js b/lib/repl.js index 46ac46b1e5..e19a92e49e 100644 --- a/lib/repl.js +++ b/lib/repl.js @@ -22,7 +22,7 @@ /* A repl library that you can include in your own code to get a runtime * interface to your program. * - * var repl = require("/repl.js"); + * var repl = require("repl"); * // start repl on stdin * repl.start("prompt> "); *