aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorHendy Tanata <htanata@gmail.com>2011-08-14 13:05:25 +0800
committerHendy Tanata <htanata@gmail.com>2011-08-14 13:07:36 +0800
commit4d525b8c032b23a21a4c494755ce70b187e102ce (patch)
treeedfba11d9237bbcb6353afd54825267d657082b5 /railties/guides
parentf566fb32c49a81636ca341f376f99ef230d71d99 (diff)
downloadrails-4d525b8c032b23a21a4c494755ce70b187e102ce.tar.gz
rails-4d525b8c032b23a21a4c494755ce70b187e102ce.tar.bz2
rails-4d525b8c032b23a21a4c494755ce70b187e102ce.zip
Fix tt tag appearing on 3_1_release_notes guide.
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/3_1_release_notes.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/3_1_release_notes.textile b/railties/guides/source/3_1_release_notes.textile
index c1585c707e..4da3aaaf7a 100644
--- a/railties/guides/source/3_1_release_notes.textile
+++ b/railties/guides/source/3_1_release_notes.textile
@@ -219,7 +219,7 @@ Keys are dasherized. Values are JSON-encoded, except for strings and symbols.
* The submit form helper does not generate an id "object_name_id" anymore.
-* Allows <tt>FormHelper#form_for</tt> to specify the :method as a direct option instead of through the :html hash. <tt>form_for(@post, remote: true, method: :delete)</tt> instead of <tt>form_for(@post, remote: true, html: { method: :delete })</tt>.
+* Allows <tt>FormHelper#form_for</tt> to specify the :method as a direct option instead of through the :html hash. <tt>form_for(==@==post, remote: true, method: :delete)</tt> instead of <tt>form_for(==@==post, remote: true, html: { method: :delete })</tt>.
* Provided <tt>JavaScriptHelper#j()</tt> as an alias for <tt>JavaScriptHelper#escape_javascript()</tt>. This supersedes the <tt>Object#j()</tt> method that the JSON gem adds within templates using the JavaScriptHelper.