aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/action_view_overview.textile
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-09-08 18:06:43 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-09-08 18:06:43 +0530
commit0d254915819a9e5711895e410e1597177216c903 (patch)
treef82088ef3963ac210e7ef3fc8d21ab87fcda2a56 /railties/guides/source/action_view_overview.textile
parentd1d51077d5f18f2f6dfb2273b0c5d5e20fbe1de3 (diff)
parentf50aeda2f73b47c47664e3651c638ba624418b8b (diff)
downloadrails-0d254915819a9e5711895e410e1597177216c903.tar.gz
rails-0d254915819a9e5711895e410e1597177216c903.tar.bz2
rails-0d254915819a9e5711895e410e1597177216c903.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/action_view_overview.textile')
-rw-r--r--railties/guides/source/action_view_overview.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/action_view_overview.textile b/railties/guides/source/action_view_overview.textile
index d1827c649b..edaaeb8543 100644
--- a/railties/guides/source/action_view_overview.textile
+++ b/railties/guides/source/action_view_overview.textile
@@ -494,7 +494,7 @@ Will generate this HTML output:
</tr>
</html>
-You can pass a collection of Active Record objects. This method will loops through your objects and create a container for each of them. For example, given +@posts+ is an array of two +Post+ objects:
+You can pass a collection of Active Record objects. This method will loop through your objects and create a container for each of them. For example, given +@posts+ is an array of two +Post+ objects:
<ruby>
<%= content_tag_for(:tr, @posts) do |post| %>