From 0ac1a258c79eb6451343fe7885152ccc58fde3dd Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Thu, 12 Nov 2020 12:12:12 +0900 Subject: [PATCH] Updated Examples (markdown) --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 4cdf455..1468466 100644 --- a/Examples.md +++ b/Examples.md @@ -30,7 +30,7 @@ HTTP.create() .setContentType("application/x-www-form-urlencoded") .setBearerAuth(token) .setUseCache(false) - .get(apiUrl + "myproject/items/mycollaction", function(res) { + .get(apiUrl + "myproject/items/mycollection", function(res) { alert(res.name); }) ;