aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorGaurish Sharma <contact@gaurishsharma.com>2013-04-16 09:45:45 +0530
committerGaurish Sharma <contact@gaurishsharma.com>2013-04-16 09:45:45 +0530
commitbb74b3952e703ef599ebf0cbc1d57eeabc2f8f9a (patch)
treeb381b65fed00a2d4afa64d52eb906706f59adacb /actionpack
parente4637530cd181fb03b35ce5fa2e95508f4bc1e1c (diff)
downloadrails-bb74b3952e703ef599ebf0cbc1d57eeabc2f8f9a.tar.gz
rails-bb74b3952e703ef599ebf0cbc1d57eeabc2f8f9a.tar.bz2
rails-bb74b3952e703ef599ebf0cbc1d57eeabc2f8f9a.zip
replace match with get verb in ActionController::Metal
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_controller/metal.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal.rb b/actionpack/lib/action_controller/metal.rb
index 143b3e0cbd..c7cb88e64f 100644
--- a/actionpack/lib/action_controller/metal.rb
+++ b/actionpack/lib/action_controller/metal.rb
@@ -57,7 +57,7 @@ module ActionController
# And then to route requests to your metal controller, you would add
# something like this to <tt>config/routes.rb</tt>:
#
- # match 'hello', to: HelloController.action(:index)
+ # get 'hello', to: HelloController.action(:index)
#
# The +action+ method returns a valid Rack application for the \Rails
# router to dispatch to.