From bacf3ca395bf7408a015622e2882b371fbe36fd5 Mon Sep 17 00:00:00 2001 From: CokaCola Date: Mon, 10 Mar 2014 08:25:56 -0700 Subject: [PATCH] Updated API Internet (markdown) --- API-Internet.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() ```