diff options
author | Mark Thomson <nzl216@gmail.com> | 2012-03-18 05:48:32 -0500 |
---|---|---|
committer | Mark Thomson <nzl216@gmail.com> | 2012-03-18 05:48:32 -0500 |
commit | d25d3fba3e94d3f7708f1ef7ac7fd32a0d9e0f5e (patch) | |
tree | 4b87dfd745348ab964586fc41a8ea1622d6a70a5 | |
parent | 9e98d2dae1bd787b9cb74e05371508bfd86f3d53 (diff) | |
download | rails-d25d3fba3e94d3f7708f1ef7ac7fd32a0d9e0f5e.tar.gz rails-d25d3fba3e94d3f7708f1ef7ac7fd32a0d9e0f5e.tar.bz2 rails-d25d3fba3e94d3f7708f1ef7ac7fd32a0d9e0f5e.zip |
respond_with description: changed 'response' to 'format'
-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 796582b6c3..fbb5d01e86 100644 --- a/actionpack/lib/action_controller/metal/mime_responds.rb +++ b/actionpack/lib/action_controller/metal/mime_responds.rb @@ -215,7 +215,7 @@ module ActionController #:nodoc: # the mime-type can be selected by explicitly setting <tt>request.format</tt> in # the controller. # - # If an acceptable response is not found, the application returns a + # If an acceptable format is not identified, the application returns a # '406 - not acceptable' status. Otherwise, the default response is to render # a template named after the current action and the selected format, # e.g. <tt>index.html.erb</tt>. If no template is available, the behavior |