diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2010-12-09 20:01:42 +1000 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2010-12-09 20:01:42 +1000 |
commit | a47f31c59399204947dacb2b54fccc6987b137ee (patch) | |
tree | 6ee3e213f28e7e053858987f65bc82fb626482ee /actionpack/lib | |
parent | b4ec6f0d3964fb550dbd42a9cd23925cff5f552e (diff) | |
download | rails-a47f31c59399204947dacb2b54fccc6987b137ee.tar.gz rails-a47f31c59399204947dacb2b54fccc6987b137ee.tar.bz2 rails-a47f31c59399204947dacb2b54fccc6987b137ee.zip |
mapper.rb: add "options" to make the default-to-namespace-name line read better
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 5a38158e9f..11ac8fed20 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -563,7 +563,7 @@ module ActionDispatch # admin_post DELETE /admin/posts/:id(.:format) {:action=>"destroy", :controller=>"admin/posts"} # === Supported options # - # The +:path+, +:as+, +:module+, +:shallow_path+ and +:shallow_prefix+ all default to the name of the namespace. + # The +:path+, +:as+, +:module+, +:shallow_path+ and +:shallow_prefix+ options all default to the name of the namespace. # # [:path] # The path prefix for the routes. |