From 9ce28ec3c515cbff212d9e79e54b092d48325b3b Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Tue, 13 Dec 2016 01:46:10 +0200 Subject: [PATCH] doc: add the valid link for curl(1) in repl.md The current autoinserted link leads to 404 page. PR-URL: https://github.com/nodejs/node/pull/10244 Reviewed-By: Anna Henningsen Reviewed-By: Sakthipriyan Vairamani Reviewed-By: James M Snell --- doc/api/repl.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/api/repl.md b/doc/api/repl.md index 268aa70c748006..eb32f2c2b2755b 100644 --- a/doc/api/repl.md +++ b/doc/api/repl.md @@ -85,7 +85,7 @@ undefined ``` Unless otherwise scoped within blocks or functions, variables declared -either implicitly, or using the `const`, `let`, or `var` keywords +either implicitly or using the `const`, `let`, or `var` keywords are declared at the global scope. #### Global and Local Scope @@ -540,10 +540,11 @@ possible to connect to a long-running Node.js process without restarting it. For an example of running a "full-featured" (`terminal`) REPL over a `net.Server` and `net.Socket` instance, see: https://gist.github.com/2209310 -For an example of running a REPL instance over curl(1), +For an example of running a REPL instance over [curl(1)][], see: https://gist.github.com/2053342 [stream]: stream.html [`util.inspect()`]: util.html#util_util_inspect_object_options [`readline.Interface`]: readline.html#readline_class_interface [`readline.InterfaceCompleter`]: readline.html#readline_use_of_the_completer_function +[curl(1)]: https://curl.haxx.se/docs/manpage.html