aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2009-02-05 20:27:34 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2009-02-05 20:27:34 +0100
commit46288f5935b03b48b2593c52f947dc4c5c505b90 (patch)
treed7e4a85288ad8f7bee84d922c849b63c6bf82019 /actionpack/lib/action_view/helpers
parent922c528d428b5ab08611976dfe0037875a4bf387 (diff)
downloadrails-46288f5935b03b48b2593c52f947dc4c5c505b90.tar.gz
rails-46288f5935b03b48b2593c52f947dc4c5c505b90.tar.bz2
rails-46288f5935b03b48b2593c52f947dc4c5c505b90.zip
Remove double parenthesis in docs
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/atom_feed_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/atom_feed_helper.rb b/actionpack/lib/action_view/helpers/atom_feed_helper.rb
index cd25684940..dc4497581c 100644
--- a/actionpack/lib/action_view/helpers/atom_feed_helper.rb
+++ b/actionpack/lib/action_view/helpers/atom_feed_helper.rb
@@ -30,7 +30,7 @@ module ActionView
# app/views/posts/index.atom.builder:
# atom_feed do |feed|
# feed.title("My great blog!")
- # feed.updated((@posts.first.created_at))
+ # feed.updated(@posts.first.created_at)
#
# for post in @posts
# feed.entry(post) do |entry|