diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-06-22 09:44:30 -0300 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2012-06-22 09:44:30 -0300 |
commit | 9298d60af08767d427d28f1b0dbf76b2d54418b4 (patch) | |
tree | 04f7c2227592336ce64b9d5fcea6fe5a4bc81711 /activerecord | |
parent | d59b2ab5c1dfc0e90d0c735a06c4607e7db07e65 (diff) | |
download | rails-9298d60af08767d427d28f1b0dbf76b2d54418b4.tar.gz rails-9298d60af08767d427d28f1b0dbf76b2d54418b4.tar.bz2 rails-9298d60af08767d427d28f1b0dbf76b2d54418b4.zip |
Fix changelog typo [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 2 |
1 files changed, 1 insertions, 1 deletions
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 |