aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorSimon Tokumine <simon@japancentre.com>2009-05-01 19:55:02 +0100
committerSimon Tokumine <simon@japancentre.com>2009-05-01 19:55:02 +0100
commit1b32f882091ed7744654f74238f3f3b1ba6701ae (patch)
treea0374f1ecd15e49014f5fa1f22e74a75010ea563 /actionpack
parent5f24ed718f92abe97fc3f50a36c9fb09499d0173 (diff)
downloadrails-1b32f882091ed7744654f74238f3f3b1ba6701ae.tar.gz
rails-1b32f882091ed7744654f74238f3f3b1ba6701ae.tar.bz2
rails-1b32f882091ed7744654f74238f3f3b1ba6701ae.zip
bugfix for with_options routing documentation
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/routing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/routing.rb b/actionpack/lib/action_controller/routing.rb
index c0eb61340b..82b36131f5 100644
--- a/actionpack/lib/action_controller/routing.rb
+++ b/actionpack/lib/action_controller/routing.rb
@@ -135,7 +135,7 @@ module ActionController
# # In routes.rb
# map.with_options :controller => 'blog' do |blog|
# blog.show '', :action => 'list'
- # blog.delete 'delete/:id', :action => 'delete',
+ # blog.delete 'delete/:id', :action => 'delete'
# blog.edit 'edit/:id', :action => 'edit'
# end
#