aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>2011-08-31 10:50:08 -0300
committerRodrigo Rosenfeld Rosas <rr.rosas@gmail.com>2011-08-31 10:50:08 -0300
commit30d65da17e5fb1cdd3f10a6d14f4295b57e26286 (patch)
treea6273aba45c448ab45fa4a1dbeaaf9302f1dc06c /railties
parent47b8415bef7edb25bb750685d6f9331f044bbd80 (diff)
downloadrails-30d65da17e5fb1cdd3f10a6d14f4295b57e26286.tar.gz
rails-30d65da17e5fb1cdd3f10a6d14f4295b57e26286.tar.bz2
rails-30d65da17e5fb1cdd3f10a6d14f4295b57e26286.zip
Fix logic in 3.1 release notes sentence
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/3_1_release_notes.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/3_1_release_notes.textile b/railties/guides/source/3_1_release_notes.textile
index 4412d32cce..7de8866ff6 100644
--- a/railties/guides/source/3_1_release_notes.textile
+++ b/railties/guides/source/3_1_release_notes.textile
@@ -271,7 +271,7 @@ Post.new(params[:post], :as => :admin)
* +ConnectionManagement+ middleware is changed to clean up the connection pool after the rack body has been flushed.
-* Added an +update_column+ method on Active Record. This new method updates a given attribute on an object, skipping validations and callbacks. It is recommended to use +update_attribute+ unless you are sure you do not want to execute any callback, including the modification of the +updated_at+ column. It should not be called on new records.
+* Added an +update_column+ method on Active Record. This new method updates a given attribute on an object, skipping validations and callbacks. It is not recommended to use +update_attribute+ unless you are sure you do not want to execute any callback, including the modification of the +updated_at+ column. It should not be called on new records.
* Associations with a +:through+ option can now use any association as the through or source association, including other associations which have a +:through+ option and +has_and_belongs_to_many+ associations.