Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: node: point at telnet module now #3489

Merged
merged 2 commits into from
Jan 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/modules/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down