diff options
author | Rory O’Kane <rory@roryokane.com> | 2012-05-24 11:39:55 -0400 |
---|---|---|
committer | Rory O’Kane <rory@roryokane.com> | 2012-05-24 11:39:55 -0400 |
commit | f1c2727d2a6ac492b799b7d79168e32c412d3c78 (patch) | |
tree | 045b1e4368b29063f7196b368116a43319c68529 /guides/source/getting_started.textile | |
parent | aa54d29f9b3068a40b67f055726696fa51a3baef (diff) | |
download | rails-f1c2727d2a6ac492b799b7d79168e32c412d3c78.tar.gz rails-f1c2727d2a6ac492b799b7d79168e32c412d3c78.tar.bz2 rails-f1c2727d2a6ac492b799b7d79168e32c412d3c78.zip |
capitalize HTML5 in Getting Started Guide
these pages capitalize “HTML5”:
http://en.wikipedia.org/wiki/HTML5
http://dev.w3.org/html5/spec/
http://www.html5rocks.com/en/
Diffstat (limited to 'guides/source/getting_started.textile')
-rw-r--r-- | guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index 4d099860fa..1979d87a06 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -1129,7 +1129,7 @@ together. Here we're using +link_to+ in a different way. We wrap the +:action+ and +:id+ attributes in a hash so that we can pass those two keys in first as one argument, and then the final two keys as another argument. The +:method+ and +:confirm+ -options are used as html5 attributes so that when the link is clicked, +options are used as HTML5 attributes so that when the link is clicked, Rails will first show a confirm dialog to the user, and then submit the link with method +delete+. This is done via the JavaScript file +jquery_ujs+ which is automatically included into your application's layout |