From 422c2d4aa8bd40c3d20cec7cbddf079a37f850cd Mon Sep 17 00:00:00 2001 From: Vladimir Enchev Date: Mon, 17 Mar 2014 14:31:55 +0200 Subject: [PATCH] readme fixed --- WebClient/Readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/WebClient/Readme.md b/WebClient/Readme.md index 592a36992..30239fbc3 100644 --- a/WebClient/Readme.md +++ b/WebClient/Readme.md @@ -7,14 +7,14 @@ client.getString("http://www.reddit.com/", function(result) { // Result is string! - }, function(e) { log("Error:" + e.message);}); + }, function(e) { console.log("Error:" + e.message); }); client.getJSON("http://www.reddit.com/r/aww.json?limit=10", function(result) { // Result is JSON! - }, function(e) { log("JSON:" + e.message);}); + }, function(e) { console.log("Error:" + e.message); }); client.getImage("http://www.telerik.com/sfimages/default-source/Homepage/hp_any_approachf6e4079a7a99493a8ab2e367b9cb3f7d.png", function(result) { // Result is tk.ui.Image! - }, function(e) { Log("Error:" + e.message); }); + }, function(e) { console.log("Error:" + e.message); }); ``` \ No newline at end of file