aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/base.rb
diff options
context:
space:
mode:
authorŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-07-12 13:01:10 +0200
committerŁukasz Strzałkowski <lukasz.strzalkowski@gmail.com>2013-08-25 11:39:09 +0200
commitd6363aa1805bed920e404035aae7138421902d5d (patch)
tree8812290a9bd140e3ecb9120af5157eec940d69e4 /actionpack/lib/action_controller/base.rb
parentfae8f72076c7feef271176636aef9e2dca3930fe (diff)
downloadrails-d6363aa1805bed920e404035aae7138421902d5d.tar.gz
rails-d6363aa1805bed920e404035aae7138421902d5d.tar.bz2
rails-d6363aa1805bed920e404035aae7138421902d5d.zip
Code formatting & typo fixes
Diffstat (limited to 'actionpack/lib/action_controller/base.rb')
-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 b785d52832..80b5f118ff 100644
--- a/actionpack/lib/action_controller/base.rb
+++ b/actionpack/lib/action_controller/base.rb
@@ -4,7 +4,7 @@ require "action_controller/metal/params_wrapper"
module ActionController
# The <tt>metal</tt> anonymous class is simple workaround the ordering issues there are with modules.
- # They need to be included in specyfic order which makes it impossible for 3rd party libs (like ActiveRecord)
+ # They need to be included in specific order which makes it impossible for 3rd party libs (like ActiveRecord)
# to hook up with its own functionality. Having anonymous super class type of Metal with <tt>AbstractController::Rendering</tt>
# included, allows us to include <tt>ActionView::Rendering</tt> (which implements <tt>AbstractController::Rendering</tt> interface)
# after the <tt>AbstractController::Rendering</tt> and before <tt>ActionController::Rendering</tt>.