diff --git a/API-Internet.md b/API-Internet.md index c56e32d..6ddb14f 100644 --- a/API-Internet.md +++ b/API-Internet.md @@ -23,8 +23,9 @@ This library wraps functionality of Internet cards. Note for internet.open, you may also do this: ```lua local handle = internet.open(...) -handle:read(10) +data = handle:read(10) handle:write("1234") +handle:close() ```