1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

for ... in => each ... do

This commit is contained in:
Akira Matsuda 2010-12-25 04:41:50 +09:00
parent f17e1b2f7f
commit 0a1f5f7511
2 changed files with 6 additions and 6 deletions

View file

@ -18,7 +18,7 @@ module ActionView #:nodoc:
# following loop for names:
#
# <b>Names of all the people</b>
# <% for person in @people %>
# <% @people.each do |person| %>
# Name: <%= person.name %><br/>
# <% end %>
#

View file

@ -19,7 +19,7 @@ module ActionView
#
# <%= render :partial => "account", :locals => { :account => @buyer } %>
#
# <% for ad in @advertisements %>
# <% @advertisements.each do |ad| %>
# <%= render :partial => "ad", :locals => { :ad => ad } %>
# <% end %>
#
@ -44,12 +44,12 @@ module ActionView
#
# The <tt>:object</tt> option can be used to directly specify which object is rendered into the partial;
# useful when the template's object is elsewhere, in a different ivar or in a local variable for instance.
#
#
# Revisiting a previous example we could have written this code:
#
#
# <%= render :partial => "account", :object => @buyer %>
#
# <% for ad in @advertisements %>
# <% @advertisements.each do |ad| %>
# <%= render :partial => "ad", :object => ad %>
# <% end %>
#
@ -69,7 +69,7 @@ module ActionView
# +partial_name_counter+. In the case of the example above, the template would be fed +ad_counter+.
#
# The <tt>:as</tt> option may be used when rendering partials.
#
#
# You can specify a partial to be rendered between elements via the <tt>:spacer_template</tt> option.
# The following example will render <tt>advertiser/_ad_divider.html.erb</tt> between each ad partial:
#