aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorEdward Tsech <edtsech@gmail.com>2012-05-01 21:19:58 +0200
committerEdward Tsech <edtsech@gmail.com>2012-05-01 21:19:58 +0200
commit3305256c95d0d2a621ce85461b881a723cc2d0d3 (patch)
tree7b88dfc417af476ea4f05b2f1e20bd4d68ce959f /activerecord/lib
parentd752eabde35be96f9d8ab913b21c04e7f6aec485 (diff)
downloadrails-3305256c95d0d2a621ce85461b881a723cc2d0d3.tar.gz
rails-3305256c95d0d2a621ce85461b881a723cc2d0d3.tar.bz2
rails-3305256c95d0d2a621ce85461b881a723cc2d0d3.zip
Add empty rows to improve readability. [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/aggregations.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/aggregations.rb b/activerecord/lib/active_record/aggregations.rb
index 25ab826a13..a4db627535 100644
--- a/activerecord/lib/active_record/aggregations.rb
+++ b/activerecord/lib/active_record/aggregations.rb
@@ -86,10 +86,12 @@ module ActiveRecord
# customer.address_street = "Hyancintvej"
# customer.address_city = "Copenhagen"
# customer.address # => Address.new("Hyancintvej", "Copenhagen")
+ #
# customer.address_street = "Vesterbrogade"
# customer.address # => Address.new("Hyancintvej", "Copenhagen")
# customer.clear_aggregation_cache
# customer.address # => Address.new("Vesterbrogade", "Copenhagen")
+ #
# customer.address = Address.new("May Street", "Chicago")
# customer.address_street # => "May Street"
# customer.address_city # => "Chicago"