aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-13 09:24:37 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-13 09:24:37 -0700
commitd3ef4b32cd56d02c0278f2c5f807837d7f6d6c2b (patch)
tree93b067af024a018644d99567d45c146583fd22f4 /actionpack/lib
parent47ac67b8d4f77e22ce1cae5c7bf836b0d6325d1e (diff)
parentf4e5873ebce6d2ff459de2ae756187f8cf88067e (diff)
downloadrails-d3ef4b32cd56d02c0278f2c5f807837d7f6d6c2b.tar.gz
rails-d3ef4b32cd56d02c0278f2c5f807837d7f6d6c2b.tar.bz2
rails-d3ef4b32cd56d02c0278f2c5f807837d7f6d6c2b.zip
Merge pull request #12223 from adomokos/fixing_typo
Fixing comment typo in ActionController::Base
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_controller/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb
index 4b2c00c86a..f93f0d4404 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -3,7 +3,7 @@ require "action_controller/metal/params_wrapper"
module ActionController
# The <tt>metal</tt> anonymous class was introduced to solve issue with including modules in <tt>ActionController::Base</tt>.
- # Modules needes to be included in particluar order. First we need to have <tt>AbstractController::Rendering</tt> included,
+ # Modules needs to be included in particluar order. First we need to have <tt>AbstractController::Rendering</tt> included,
# next we should include actuall implementation which would be for example <tt>ActionView::Rendering</tt> and after that
# <tt>ActionController::Rendering</tt>. This order must be preserved and as we want to have middle module included dynamicaly
# <tt>metal</tt> class was introduced. It has <tt>AbstractController::Rendering</tt> included and is parent class of