diff options
| -rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 06505bddf9..e5dbe214b4 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -71,7 +71,8 @@ module ActiveSupport      # order.      #      # If the callback chain was halted, returns +false+. Otherwise returns the -    # result of the block, or +true+ if no block is given. +    # result of the block, nil if no callbacks have been set, or +true+  +    # if callbacks have been set but no block is given.      #      #   run_callbacks :save do      #     save  | 
