diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-09-04 16:47:48 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-09-04 16:47:48 +0000 |
commit | fc901e6f5d6e5698c6dfac3799d6ff37ccb8303d (patch) | |
tree | c7bedee6fc939e017785745cf0f0b39b04be612d /actionpack | |
parent | c918fbf14b96319412cb6195e7a8a3229613340c (diff) | |
download | rails-fc901e6f5d6e5698c6dfac3799d6ff37ccb8303d.tar.gz rails-fc901e6f5d6e5698c6dfac3799d6ff37ccb8303d.tar.bz2 rails-fc901e6f5d6e5698c6dfac3799d6ff37ccb8303d.zip |
Doc fix (closes #6023)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4988 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rwxr-xr-x | actionpack/lib/action_controller/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 433fd9f801..f42686c318 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -244,7 +244,7 @@ module ActionController #:nodoc: cattr_accessor :allow_concurrency # Modern REST web services often need to submit complex data to the web application. - # The param_parsers hash lets you register handlers wich will process the http body and add parameters to the + # The param_parsers hash lets you register handlers which will process the http body and add parameters to the # <tt>params</tt> hash. These handlers are invoked for post and put requests. # # By default application/xml is enabled. A XmlSimple class with the same param name as the root will be instanciated |