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:
parent
f17e1b2f7f
commit
0a1f5f7511
2 changed files with 6 additions and 6 deletions
|
@ -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 %>
|
||||
#
|
||||
|
|
|
@ -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 %>
|
||||
#
|
||||
|
@ -49,7 +49,7 @@ module ActionView
|
|||
#
|
||||
# <%= render :partial => "account", :object => @buyer %>
|
||||
#
|
||||
# <% for ad in @advertisements %>
|
||||
# <% @advertisements.each do |ad| %>
|
||||
# <%= render :partial => "ad", :object => ad %>
|
||||
# <% end %>
|
||||
#
|
||||
|
|
Loading…
Reference in a new issue