aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/spawn_methods.rb
diff options
context:
space:
mode:
authorAvnerCohen <israbirding@gmail.com>2012-11-10 17:16:21 +0200
committerAvnerCohen <israbirding@gmail.com>2012-11-10 17:16:21 +0200
commit890da5149df19c54124929ff8b533014b6b46e69 (patch)
tree6a7f19b90ab939482e94b5af5a32d76057a2e708 /activerecord/lib/active_record/relation/spawn_methods.rb
parentdcf401e3bc7163aefab856abe7f1d238025c4ef9 (diff)
downloadrails-890da5149df19c54124929ff8b533014b6b46e69.tar.gz
rails-890da5149df19c54124929ff8b533014b6b46e69.tar.bz2
rails-890da5149df19c54124929ff8b533014b6b46e69.zip
1.9 Syntax related changes
Diffstat (limited to 'activerecord/lib/active_record/relation/spawn_methods.rb')
-rw-r--r--activerecord/lib/active_record/relation/spawn_methods.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/relation/spawn_methods.rb b/activerecord/lib/active_record/relation/spawn_methods.rb
index 5394c1b28b..62dda542ab 100644
--- a/activerecord/lib/active_record/relation/spawn_methods.rb
+++ b/activerecord/lib/active_record/relation/spawn_methods.rb
@@ -15,11 +15,11 @@ module ActiveRecord
#
# ==== Examples
#
- # Post.where(:published => true).joins(:comments).merge( Comment.where(:spam => false) )
+ # Post.where(published: true).joins(:comments).merge( Comment.where(spam: false) )
# # Performs a single join query with both where conditions.
#
# recent_posts = Post.order('created_at DESC').first(5)
- # Post.where(:published => true).merge(recent_posts)
+ # Post.where(published: true).merge(recent_posts)
# # Returns the intersection of all published posts with the 5 most recently created posts.
# # (This is just an example. You'd probably want to do this with a single query!)
#