diff options
author | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-09-16 13:17:58 +0200 |
---|---|---|
committer | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-09-16 13:17:58 +0200 |
commit | df60f6c765d52656ada5ced36522d5b043cb0ab3 (patch) | |
tree | 93b80ca58cd18dc174fb0a382eda5d62d8c60dd0 | |
parent | feacc377b7a1fee0a78e17784cd405b07809335b (diff) | |
download | rails-df60f6c765d52656ada5ced36522d5b043cb0ab3.tar.gz rails-df60f6c765d52656ada5ced36522d5b043cb0ab3.tar.bz2 rails-df60f6c765d52656ada5ced36522d5b043cb0ab3.zip |
s/class/Model/
-rw-r--r-- | activerecord/lib/active_record/transactions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/transactions.rb b/activerecord/lib/active_record/transactions.rb index 86a5142a97..27b5aca18f 100644 --- a/activerecord/lib/active_record/transactions.rb +++ b/activerecord/lib/active_record/transactions.rb @@ -101,7 +101,7 @@ module ActiveRecord # until it's restarted from the beginning. Here is an example which # demonstrates the problem: # - # # Suppose that we have a Number class with a unique column called 'i'. + # # Suppose that we have a Number model with a unique column called 'i'. # Number.transaction do # Number.create(:i => 0) # begin |