diff options
author | Akira Matsuda <ronnie@dio.jp> | 2013-01-03 22:34:11 +0900 |
---|---|---|
committer | Akira Matsuda <ronnie@dio.jp> | 2013-01-03 22:34:11 +0900 |
commit | 79255fab894e44b1daa943a151eadcefbe97526a (patch) | |
tree | 051e4c72c3f03a6894eceaa25aeedc8011cd9341 /actionpack/lib/action_controller | |
parent | eed9f2539e3ab5a68e798802f464b8e4e95e619e (diff) | |
download | rails-79255fab894e44b1daa943a151eadcefbe97526a.tar.gz rails-79255fab894e44b1daa943a151eadcefbe97526a.tar.bz2 rails-79255fab894e44b1daa943a151eadcefbe97526a.zip |
PUT => PATCH
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/mime_responds.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/mime_responds.rb b/actionpack/lib/action_controller/metal/mime_responds.rb index fe6b6c2f26..70b07e851d 100644 --- a/actionpack/lib/action_controller/metal/mime_responds.rb +++ b/actionpack/lib/action_controller/metal/mime_responds.rb @@ -227,7 +227,7 @@ module ActionController #:nodoc: # i.e. its +show+ action. # 2. If there are validation errors, the response # renders a default action, which is <tt>:new</tt> for a - # +post+ request or <tt>:edit</tt> for +put+. + # +post+ request or <tt>:edit</tt> for +patch+ or +put+. # Thus an example like this - # # respond_to :html, :xml |