diff options
author | Xavier Noria <fxn@hashref.com> | 2008-08-12 21:52:38 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2008-08-12 21:52:38 +0200 |
commit | 3b8b7a78df62db1f55c27b2b1a612a605cd9e56f (patch) | |
tree | 51a0fc6fa444dc8c71e0b0fc62194e3a1824b794 | |
parent | d7514c6dafb331901cfcb9c71152fab0e4261d67 (diff) | |
download | rails-3b8b7a78df62db1f55c27b2b1a612a605cd9e56f.tar.gz rails-3b8b7a78df62db1f55c27b2b1a612a605cd9e56f.tar.bz2 rails-3b8b7a78df62db1f55c27b2b1a612a605cd9e56f.zip |
removed a wrong statement, I'll look into this to document it better
-rw-r--r-- | activerecord/lib/active_record/callbacks.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb index 0f2455fbfc..9f3b0765ca 100644 --- a/activerecord/lib/active_record/callbacks.rb +++ b/activerecord/lib/active_record/callbacks.rb @@ -173,7 +173,6 @@ module ActiveRecord # == Transactions # # The entire callback chain for +save+ and +destroy+ runs within their transaction. - # If the action is cancelled a rollback is performed. module Callbacks CALLBACKS = %w( after_find after_initialize before_save after_save before_create after_create before_update after_update before_validation |