aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2012-07-26 15:43:16 +1200
committerPhilip Arndt <parndt@gmail.com>2012-07-26 15:43:16 +1200
commit9fa06c3d9811113259cb6e00a3a8454b3974add7 (patch)
treeba635ff634a62c392c896203c032b277c28d5091 /activerecord
parent17a64de4980683da3ca3c185205013a29a8cf88d (diff)
downloadrails-9fa06c3d9811113259cb6e00a3a8454b3974add7.tar.gz
rails-9fa06c3d9811113259cb6e00a3a8454b3974add7.tar.bz2
rails-9fa06c3d9811113259cb6e00a3a8454b3974add7.zip
Switched update_column recommendation in changelog to update_columns
This is related to #7159
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 5cfdc9af14..c12520d6d8 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -17,7 +17,7 @@
*Steve Klabnik*
-* `update_attribute` has been deprecated. Use `update_column` if
+* `update_attribute` has been deprecated. Use `update_columns` if
you want to bypass mass-assignment protection, validations, callbacks,
and touching of updated_at. Otherwise please use `update_attributes`.