aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorGabriel Horner <gabriel.horner@gmail.com>2011-02-03 23:51:06 -0500
committerGabriel Horner <gabriel.horner@gmail.com>2011-02-03 23:51:06 -0500
commitac15647bf0e6ed85714dee4e2b14b2e7e6f29320 (patch)
tree9ebbc5d43dd4945106203a40434677bab04bafda /actionpack/lib
parenta96a9a494856c57bb8773d8d22bbee176cda9d6e (diff)
downloadrails-ac15647bf0e6ed85714dee4e2b14b2e7e6f29320.tar.gz
rails-ac15647bf0e6ed85714dee4e2b14b2e7e6f29320.tar.bz2
rails-ac15647bf0e6ed85714dee4e2b14b2e7e6f29320.zip
keep options titles consistent to "Options"
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index b28b68ad83..b5ff6e0dcb 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -273,7 +273,7 @@ module ActionDispatch
# match 'photos/:id', :to => 'photos#show'
# match 'photos/:id', :controller => 'photos', :action => 'show'
#
- # === Supported options
+ # === Options
#
# [:controller]
# The route's controller.
@@ -549,7 +549,7 @@ module ActionDispatch
# The difference here being that the routes generated are like /rails/projects/2,
# rather than /accounts/rails/projects/2.
#
- # === Supported options
+ # === Options
#
# Takes same options as <tt>Base#match</tt> and <tt>Resources#resources</tt>.
#
@@ -632,7 +632,7 @@ module ActionDispatch
# admin_post PUT /admin/posts/:id(.:format) {:action=>"update", :controller=>"admin/posts"}
# admin_post DELETE /admin/posts/:id(.:format) {:action=>"destroy", :controller=>"admin/posts"}
#
- # === Supported options
+ # === Options
#
# The +:path+, +:as+, +:module+, +:shallow_path+ and +:shallow_prefix+
# options all default to the name of the namespace.
@@ -950,7 +950,7 @@ module ActionDispatch
# PUT /geocoder
# DELETE /geocoder
#
- # === Supported options
+ # === Options
# Takes same options as +resources+.
def resource(*resources, &block)
options = resources.extract_options!
@@ -1013,7 +1013,7 @@ module ActionDispatch
# PUT /photos/:id/comments/:id
# DELETE /photos/:id/comments/:id
#
- # === Supported options
+ # === Options
# Takes same options as <tt>Base#match</tt> as well as:
#
# [:path_names]