diff options
author | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2008-09-14 22:10:08 +0200 |
---|---|---|
committer | Daniel Schierbeck <daniel.schierbeck@gmail.com> | 2008-09-14 22:10:08 +0200 |
commit | 51b5db11997dfe4b117655a050b09e3ef7b0747a (patch) | |
tree | 9991e76639befe928d5e26c7eab2f40a2421dd25 /activerecord/lib | |
parent | 93a49c33cc0d35b7ee6ed2e0ff7caadd5a3e2e0f (diff) | |
download | rails-51b5db11997dfe4b117655a050b09e3ef7b0747a.tar.gz rails-51b5db11997dfe4b117655a050b09e3ef7b0747a.tar.bz2 rails-51b5db11997dfe4b117655a050b09e3ef7b0747a.zip |
Fixed indentation error caused by the last commit.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/aggregations.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb index ce95e34ae8..1eefebb3b3 100644 --- a/activerecord/lib/active_record/aggregations.rb +++ b/activerecord/lib/active_record/aggregations.rb @@ -75,7 +75,7 @@ module ActiveRecord # # customer.balance = Money.new(20) # sets the Money value object and the attribute # customer.balance # => Money value object - # customer.balance.exchange_to("DKK") # => Money.new(120, "DKK") + # customer.balance.exchange_to("DKK") # => Money.new(120, "DKK") # customer.balance > Money.new(10) # => true # customer.balance == Money.new(20) # => true # customer.balance < Money.new(5) # => false |