aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorRohit Arondekar <rohit.arondekar@gmail.com>2010-05-20 03:23:21 -0700
committerRohit Arondekar <rohit.arondekar@gmail.com>2010-05-20 03:23:21 -0700
commit0244b43ecdf1aee9dac328b0e828156b579d9ada (patch)
treee659cf3dfc645ed59136eeb11f15de1e5c038dde /actionpack
parent7f07cc364a7ee7ceae21b29b54467fde0db93389 (diff)
downloadrails-0244b43ecdf1aee9dac328b0e828156b579d9ada.tar.gz
rails-0244b43ecdf1aee9dac328b0e828156b579d9ada.tar.bz2
rails-0244b43ecdf1aee9dac328b0e828156b579d9ada.zip
Minor typo fix in callbacks.rb of abstract_controller
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/abstract_controller/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/abstract_controller/callbacks.rb b/actionpack/lib/abstract_controller/callbacks.rb
index ee496dadc5..67efeb7063 100644
--- a/actionpack/lib/abstract_controller/callbacks.rb
+++ b/actionpack/lib/abstract_controller/callbacks.rb
@@ -20,7 +20,7 @@ module AbstractController
end
module ClassMethods
- # If :only or :accept are used, convert the options into the
+ # If :only or :except are used, convert the options into the
# primitive form (:per_key) used by ActiveSupport::Callbacks.
# The basic idea is that :only => :index gets converted to
# :if => proc {|c| c.action_name == "index" }, but that the