aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorOge Nnadi <ogechi.nnadi@digitalscientists.com>2011-04-11 13:08:58 -0700
committerOge Nnadi <ogechi.nnadi@digitalscientists.com>2011-04-11 13:08:58 -0700
commitd5634b2287cda70d4a53a70424f1a3fdc95562f6 (patch)
tree813c9430dc00c6e40a62179234c896f140fd042c /actionpack
parentd3dce774efd548a275dcd415e5b9e80518fa02bc (diff)
downloadrails-d5634b2287cda70d4a53a70424f1a3fdc95562f6.tar.gz
rails-d5634b2287cda70d4a53a70424f1a3fdc95562f6.tar.bz2
rails-d5634b2287cda70d4a53a70424f1a3fdc95562f6.zip
Added missing </tt>
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 95992c2698..f7b2b7ff53 100644
--- a/actionpack/lib/abstract_controller/callbacks.rb
+++ b/actionpack/lib/abstract_controller/callbacks.rb
@@ -29,7 +29,7 @@ module AbstractController
#
# ==== Options
# * <tt>only</tt> - The callback should be run only for this action
- # * <tt>except<tt> - The callback should be run for all actions except this action
+ # * <tt>except</tt> - The callback should be run for all actions except this action
def _normalize_callback_options(options)
if only = options[:only]
only = Array(only).map {|o| "action_name == '#{o}'"}.join(" || ")