aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-06-11 12:57:19 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-06-11 12:57:19 +0100
commit6fd73442d83ee162af622b722b1e1b7356fa9fcb (patch)
tree636a183e39ce1f3664ba5855749f01897bae7e69 /activerecord/lib
parent71bf756ea21f338771b53d02951d6654bd295649 (diff)
downloadrails-6fd73442d83ee162af622b722b1e1b7356fa9fcb.tar.gz
rails-6fd73442d83ee162af622b722b1e1b7356fa9fcb.tar.bz2
rails-6fd73442d83ee162af622b722b1e1b7356fa9fcb.zip
Update docs to reflect 71bf75
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-xactiverecord/lib/active_record/associations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb
index fc186f806c..5f42b5a459 100755
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -859,7 +859,7 @@ module ActiveRecord
# Note: If you've enabled the counter cache, then you may want to add the counter cache attribute
# to the +attr_readonly+ list in the associated classes (e.g. <tt>class Post; attr_readonly :comments_count; end</tt>).
# * <tt>:readonly</tt> - If true, the associated object is readonly through the association.
- # * <tt>:validate</tt> - If false, don't validate the associated objects when saving the parent object. +true+ by default.
+ # * <tt>:validate</tt> - If false, don't validate the associated objects when saving the parent object. +false+ by default.
#
# Option examples:
# belongs_to :firm, :foreign_key => "client_of"