diff options
author | Oge Nnadi <ogechi.nnadi@digitalscientists.com> | 2011-04-11 13:08:58 -0700 |
---|---|---|
committer | Oge Nnadi <ogechi.nnadi@digitalscientists.com> | 2011-04-11 13:08:58 -0700 |
commit | d5634b2287cda70d4a53a70424f1a3fdc95562f6 (patch) | |
tree | 813c9430dc00c6e40a62179234c896f140fd042c /actionpack | |
parent | d3dce774efd548a275dcd415e5b9e80518fa02bc (diff) | |
download | rails-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.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 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(" || ") |