diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-09-08 18:06:43 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-09-08 18:06:43 +0530 |
commit | 0d254915819a9e5711895e410e1597177216c903 (patch) | |
tree | f82088ef3963ac210e7ef3fc8d21ab87fcda2a56 /actionpack | |
parent | d1d51077d5f18f2f6dfb2273b0c5d5e20fbe1de3 (diff) | |
parent | f50aeda2f73b47c47664e3651c638ba624418b8b (diff) | |
download | rails-0d254915819a9e5711895e410e1597177216c903.tar.gz rails-0d254915819a9e5711895e410e1597177216c903.tar.bz2 rails-0d254915819a9e5711895e410e1597177216c903.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_view/helpers/record_tag_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/record_tag_helper.rb b/actionpack/lib/action_view/helpers/record_tag_helper.rb index cbee517adc..b351302d01 100644 --- a/actionpack/lib/action_view/helpers/record_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/record_tag_helper.rb @@ -18,7 +18,7 @@ module ActionView # <div id="person_123" class="person foo"> Joe Bloggs </div> # # You can also pass an array of Active Record objects, which will then - # get iterates over and yield each record as an argument for the block. + # get iterated over and yield each record as an argument for the block. # For example: # # <%= div_for(@people, :class => "foo") do |person| %> @@ -56,7 +56,7 @@ module ActionView # <tr id="foo_person_123" class="person">... # # You can also pass an array of objects which this method will loop through - # and yield the current object to the supplied block, reduce the need for + # and yield the current object to the supplied block, reducing the need for # having to iterate through the object (using <tt>each</tt>) beforehand. # For example (assuming @people is an array of Person objects): # |