aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgis Anastasopoulos <corestudiosinc@gmail.com>2012-10-21 17:15:44 +0300
committerAgis Anastasopoulos <corestudiosinc@gmail.com>2012-10-21 17:15:44 +0300
commit1332cf53af981d0a7a6f801edd9632eb5c118a3f (patch)
tree119035f656064a94cf97e1051745b30425ef7ce8
parenta6d383c8b2afb253c009ad67d31aae3aa8dcc457 (diff)
downloadrails-1332cf53af981d0a7a6f801edd9632eb5c118a3f.tar.gz
rails-1332cf53af981d0a7a6f801edd9632eb5c118a3f.tar.bz2
rails-1332cf53af981d0a7a6f801edd9632eb5c118a3f.zip
Explain where the acronym AJAX stands for & replace "JavaScript writer" with "JavaScript developer"
-rw-r--r--guides/source/working_with_javascript.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/working_with_javascript.md b/guides/source/working_with_javascript.md
index c0220017d3..ece3b7647c 100644
--- a/guides/source/working_with_javascript.md
+++ b/guides/source/working_with_javascript.md
@@ -28,9 +28,9 @@ show you the results. This is called the 'Request-Response cycle'.
JavaScript can also make requests to the server, and parse the response. It
also has the ability to update information on the page. Combining these two
-powers, a JavaScript writer can make a web page that can update just parts of
+powers, a JavaScript developer can make a web page that can update just parts of
itself, without needing to get the full page data from the server. This is a
-powerful technique that we call AJAX.
+powerful technique that we call AJAX, which stands for Asynchronous JavaScript and XML.
Rails ships with CoffeeScript by default, and so the rest of the examples
in this guide will be in CoffeeScript. All of these lessons, of course, apply