aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/README.rdoc
diff options
context:
space:
mode:
authorArun Agrawal <arun@fromjaipur.com>2011-05-19 08:59:57 +0530
committerArun Agrawal <arun@fromjaipur.com>2011-05-19 09:03:46 +0530
commit8630cd420cf2a6f60151d88c677e8526acdeec57 (patch)
tree4b0f366a146a8360b541033dfb6651183ee21cd3 /actionpack/README.rdoc
parenta921cab621cb6932f6e88979f7c6650d3c5952b2 (diff)
downloadrails-8630cd420cf2a6f60151d88c677e8526acdeec57.tar.gz
rails-8630cd420cf2a6f60151d88c677e8526acdeec57.tar.bz2
rails-8630cd420cf2a6f60151d88c677e8526acdeec57.zip
README updated for for => each
Diffstat (limited to 'actionpack/README.rdoc')
-rw-r--r--actionpack/README.rdoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/actionpack/README.rdoc b/actionpack/README.rdoc
index 2f3678881d..5919b5c6d4 100644
--- a/actionpack/README.rdoc
+++ b/actionpack/README.rdoc
@@ -58,7 +58,7 @@ A short rundown of some of the major features:
* ERB templates (static content mixed with dynamic output from ruby)
- <% for post in @posts %>
+ <% @posts.each do |post| %>
Title: <%= post.title %>
<% end %>
@@ -81,7 +81,7 @@ A short rundown of some of the major features:
xml.language "en-us"
xml.ttl "40"
- for item in @recent_items
+ @recent_items.each do |item|
xml.item do
xml.title(item_title(item))
xml.description(item_description(item))
@@ -293,7 +293,7 @@ And the templates look like this:
</body></html>
weblog/index.html.erb:
- <% for post in @posts %>
+ <% @posts.each do |post| %>
<p><%= link_to(post.title, :action => "show", :id => post.id) %></p>
<% end %>