diff options
author | Xavier Noria <fxn@hashref.com> | 2012-10-24 22:52:59 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-10-24 22:52:59 +0200 |
commit | 4fee5dfed2200b3f5b2b90b14f9e0c0a7e925b35 (patch) | |
tree | cf73a9714e3bfd53a4eee1dc500dba131aab0a90 | |
parent | fe470411c60836448ce88819ecbbf01adc527a1e (diff) | |
download | rails-4fee5dfed2200b3f5b2b90b14f9e0c0a7e925b35.tar.gz rails-4fee5dfed2200b3f5b2b90b14f9e0c0a7e925b35.tar.bz2 rails-4fee5dfed2200b3f5b2b90b14f9e0c0a7e925b35.zip |
Revert "Improve grammar a bit"
This reverts commit 507e522e26b4073455b2337bcf1670e52bba5429.
-rw-r--r-- | guides/source/working_with_javascript.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/working_with_javascript.md b/guides/source/working_with_javascript.md index 33860c6f25..106744d605 100644 --- a/guides/source/working_with_javascript.md +++ b/guides/source/working_with_javascript.md @@ -119,7 +119,7 @@ $(document).ready -> We call this 'unobtrusive' JavaScript because we're no longer mixing our JavaScript into our HTML. We've properly separated our concerns, making future -changes easier. We can easily add behavior to any link by adding the data +change easy. We can easily add behavior to any link by adding the data attribute. We can run all of our JavaScript through a minimizer and concatenator. We can serve our entire JavaScript bundle on every page, which means that it'll get downloaded on the first page load and then be cached on |