aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 84e056a..9f45d27 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ end))
61do 61do
62 http.get("ajaxtest", function(data) 62 http.get("ajaxtest", function(data)
63 body[".result"]:html(data) 63 body[".result"]:html(data)
64 return http.get("ajaxprocess", data, function(processed) 64 return http.post("ajaxprocess", data, function(processed)
65 body[".result"]:append(processed) 65 body[".result"]:append(processed)
66 return print("done") 66 return print("done")
67 end) 67 end)