Fix changelog typo [ci skip]

This commit is contained in:
Carlos Antonio da Silva 2012-06-22 09:44:30 -03:00
parent d59b2ab5c1
commit 9298d60af0

@ -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