aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-07-07 10:08:14 +0100
committerJon Leighton <j@jonathanleighton.com>2012-07-07 10:08:14 +0100
commit90e42ff16312a46d414c8b31b4119ff31fcc2dba (patch)
tree576f6b2891bc7eaec9cfac940bcc2937867ff553 /activerecord
parentc433adffa23785d3727379902859f57bc3f68b27 (diff)
downloadrails-90e42ff16312a46d414c8b31b4119ff31fcc2dba.tar.gz
rails-90e42ff16312a46d414c8b31b4119ff31fcc2dba.tar.bz2
rails-90e42ff16312a46d414c8b31b4119ff31fcc2dba.zip
fixup changelog
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 95967c61ee..36d94fb38b 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -24,7 +24,7 @@
dealing with a `Relation` object rather than an array:.
User.where(:age => 30).inspect
- # => <ActiveRecord::Relation [#<User ...>, #<User ...>] ...>
+ # => <ActiveRecord::Relation [#<User ...>, #<User ...>, ...]>
User.where(:age => 30).to_a.inspect
# => [#<User ...>, #<User ...>]