aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2012-10-24 22:52:43 +0200
committerXavier Noria <fxn@hashref.com>2012-10-24 22:52:43 +0200
commitfe470411c60836448ce88819ecbbf01adc527a1e (patch)
tree5063e1eef2152b4f4c8dbc69dae804986f8a032d /guides/source
parentc8dec40c5e2b41cd9b60bfe591504549c6bd5387 (diff)
downloadrails-fe470411c60836448ce88819ecbbf01adc527a1e.tar.gz
rails-fe470411c60836448ce88819ecbbf01adc527a1e.tar.bz2
rails-fe470411c60836448ce88819ecbbf01adc527a1e.zip
Revert "Explain where the acronym AJAX stands for & replace "JavaScript writer" with "JavaScript developer""
This reverts commit 1332cf53af981d0a7a6f801edd9632eb5c118a3f.
Diffstat (limited to 'guides/source')
-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 15435691fa..33860c6f25 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 developer can make a web page that can update just parts of
+powers, a JavaScript writer 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, which stands for Asynchronous JavaScript and XML.
+powerful technique that we call AJAX.
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