Skip to content

Commit d0d3ea8

Browse files
author
metadaddy
committed
Minor readme tweaks
1 parent b7c7abb commit d0d3ea8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Force.com JavaScript REST Toolkit
22
=================================
33

4-
This minimal toolkit allows JavaScript in Visualforce pages to call the Force.com REST API via the Ajax Proxy.
4+
This minimal toolkit allows JavaScript in Visualforce pages to call the Force.com REST API via the Ajax Proxy, providing an easy-to-use JavaScript wrapper.
55

66
Background
77
----------
@@ -38,7 +38,7 @@ Your Visualforce page will need to include jQuery and the toolkit, then create a
3838
// Get an instance of the REST API client
3939
var client = new forcetk.Client('{!$Api.Session_ID}');
4040
41-
client.query("SELECT Name FROM Account LIMIT 1",function(response){
41+
client.query("SELECT Name FROM Account LIMIT 1", function(response){
4242
$j('#accountname').html(response.records[0].Name);
4343
});
4444
</script>

0 commit comments

Comments
 (0)