aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-05-19 04:51:08 -0700
committerJosé Valim <jose.valim@gmail.com>2011-05-19 04:51:08 -0700
commit5281c296e66b7a343ab2684e8bc7d9b1fbe41283 (patch)
tree19b25afbf911906a7704408b74331a0dc7757c98 /actionpack/lib
parentb5fec0f2a02727cd532c2d5db4ce9afa75d86bbe (diff)
parente3eaeb490aa97055e1ecc497412ca18e4604c9ba (diff)
downloadrails-5281c296e66b7a343ab2684e8bc7d9b1fbe41283.tar.gz
rails-5281c296e66b7a343ab2684e8bc7d9b1fbe41283.tar.bz2
rails-5281c296e66b7a343ab2684e8bc7d9b1fbe41283.zip
Merge pull request #1136 from arunagw/actionmailer_readme
Actionmailer readme
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_view/helpers/atom_feed_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_view/helpers/atom_feed_helper.rb b/actionpack/lib/action_view/helpers/atom_feed_helper.rb
index 889ea8a763..a087688a2c 100644
--- a/actionpack/lib/action_view/helpers/atom_feed_helper.rb
+++ b/actionpack/lib/action_view/helpers/atom_feed_helper.rb
@@ -34,7 +34,7 @@ module ActionView
# feed.title("My great blog!")
# feed.updated(@posts.first.created_at)
#
- # for post in @posts
+ # @posts.each do |post|
# feed.entry(post) do |entry|
# entry.title(post.title)
# entry.content(post.body, :type => 'html')
@@ -66,7 +66,7 @@ module ActionView
# feed.updated((@posts.first.created_at))
# feed.tag!(openSearch:totalResults, 10)
#
- # for post in @posts
+ # @posts.each do |post|
# feed.entry(post) do |entry|
# entry.title(post.title)
# entry.content(post.body, :type => 'html')