diff options
| author | ame <[email protected]> | 2025-06-17 00:25:14 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2025-06-17 00:25:14 -0500 |
| commit | e058a29d70dd299b7fc2a84cae5824fd03fbef84 (patch) | |
| tree | cf7d7937d04f49a02e1092541f6ab5c53e853b12 /docs/net/websocket.md | |
| parent | c98308b44764483322df9c4cf6ec9187669a5f00 (diff) | |
more docs
Diffstat (limited to 'docs/net/websocket.md')
| -rw-r--r-- | docs/net/websocket.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/net/websocket.md b/docs/net/websocket.md index 5a82a70..f64f80a 100644 --- a/docs/net/websocket.md +++ b/docs/net/websocket.md @@ -11,11 +11,11 @@ can return an error ```lua net.wss("amyy.cc") -- connects to wss://amyy.cc -net.wss("ws://amyy.cc") -- identical to net.wss("amyy.cc" +net.wss("ws://amyy.cc") -- identical to net.wss("amyy.cc") ``` ```lua -local con = new.ws("amyy.cc") +local con = net.ws("amyy.cc") while true do local frame = con:read() |
