diff options
author | Mark Rushakoff <mark.rushakoff@gmail.com> | 2012-04-27 21:33:56 -0700 |
---|---|---|
committer | Mark Rushakoff <mark.rushakoff@gmail.com> | 2012-04-27 21:33:56 -0700 |
commit | c13d36c95fcc0d327dff7af36ae07afaf3ce603c (patch) | |
tree | f5f814ff86e007c8c2419e7c88de7a3b14809651 /actionpack/lib/action_controller | |
parent | 43af34c0f6c81d4d93be1bc1e743c202e8244485 (diff) | |
download | rails-c13d36c95fcc0d327dff7af36ae07afaf3ce603c.tar.gz rails-c13d36c95fcc0d327dff7af36ae07afaf3ce603c.tar.bz2 rails-c13d36c95fcc0d327dff7af36ae07afaf3ce603c.zip |
More using <tt>x</tt> instead of +x+ when the latter renders improperly.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/metal/params_wrapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/params_wrapper.rb b/actionpack/lib/action_controller/metal/params_wrapper.rb index 17e2db74d4..7e2316d01c 100644 --- a/actionpack/lib/action_controller/metal/params_wrapper.rb +++ b/actionpack/lib/action_controller/metal/params_wrapper.rb @@ -48,7 +48,7 @@ module ActionController # method attribute_names. # # If you're going to pass the parameters to an +ActiveModel+ object (such as - # +User.new(params[:user])+), you might consider passing the model class to + # <tt>User.new(params[:user])</tt>), you might consider passing the model class to # the method instead. The +ParamsWrapper+ will actually try to determine the # list of attribute names from the model and only wrap those attributes: # |