From 322ba5263b8d1013afaedad0b042e14ba2b9a38b Mon Sep 17 00:00:00 2001 From: rohit Date: Thu, 20 May 2010 14:14:01 +0530 Subject: [PATCH] Fixed minor typo in api doc of callbacks.rb [#4658 state:resolved] --- actionpack/lib/abstract_controller/callbacks.rb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/actionpack/lib/abstract_controller/callbacks.rb b/actionpack/lib/abstract_controller/callbacks.rb index ee496da..67efeb7 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 -- 1.7.0.4