diff options
author | Simon Tokumine <simon@japancentre.com> | 2009-05-01 19:55:02 +0100 |
---|---|---|
committer | Simon Tokumine <simon@japancentre.com> | 2009-05-01 19:55:02 +0100 |
commit | 1b32f882091ed7744654f74238f3f3b1ba6701ae (patch) | |
tree | a0374f1ecd15e49014f5fa1f22e74a75010ea563 /actionpack/lib | |
parent | 5f24ed718f92abe97fc3f50a36c9fb09499d0173 (diff) | |
download | rails-1b32f882091ed7744654f74238f3f3b1ba6701ae.tar.gz rails-1b32f882091ed7744654f74238f3f3b1ba6701ae.tar.bz2 rails-1b32f882091ed7744654f74238f3f3b1ba6701ae.zip |
bugfix for with_options routing documentation
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/routing.rb | 2 |
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 # |