From 5701347ff8d777f719271646d6090e0411bda834 Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Fri, 7 Jan 2022 04:53:42 +0000 Subject: [PATCH] docs: node: point at telnet module now (#3489) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * docs: node: point at telnet module now See 8d091c476edf6ae2977a5f2a74bf5824d07d6183 * Fix links Co-authored-by: Marcel Stör --- docs/modules/node.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/modules/node.md b/docs/modules/node.md index c5c55db0..024fa358 100644 --- a/docs/modules/node.md +++ b/docs/modules/node.md @@ -340,7 +340,8 @@ Submits a string to the Lua interpreter. Similar to `pcall(loadstring(str))`, bu ```lua sk:on("receive", function(conn, payload) node.input(payload) end) ``` -See the `telnet/telnet.lua` in `lua_examples` for a more comprehensive example. +See [the telnet lua module](../lua-modules/telnet.md) for a working +example. #### See also [`node.output()`](#nodeoutput) @@ -420,7 +421,8 @@ Redirects the Lua interpreter to a `stdout` pipe when a CB function is specified #### Example -See the `telnet/telnet.lua` in `lua_examples` for a more comprehensive example of its use. +See [the telnet lua module](../lua-modules/telnet.md) for a working +example. #### See also [`node.input()`](#nodeinput)