diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 860ceae04a..ed5f29cfe4 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,7 +1,7 @@ ## Rails 4.0.0 (unreleased) ## * Allow ActiveRecord::Relation#pluck to accept multiple columns. Returns an - array of arrays containing the type casted values: + array of arrays containing the typecasted values: Person.pluck(:id, :name) # SELECT people.id, people.name FROM people