aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations.rb
diff options
context:
space:
mode:
authorSimon Tokumine <simon@japancentre.com>2010-07-28 14:56:05 -0700
committerSimon Tokumine <simon@japancentre.com>2010-07-28 14:56:05 -0700
commitf46e841f7217dd839ce166ec9a592f0dec127673 (patch)
treebaf097fdfb2a0d9157ee0d9a1dee57ffc3edf3d4 /activerecord/lib/active_record/associations.rb
parent31f8a0cd23ca3d1137968e95bce47a431555bdd6 (diff)
downloadrails-f46e841f7217dd839ce166ec9a592f0dec127673.tar.gz
rails-f46e841f7217dd839ce166ec9a592f0dec127673.tar.bz2
rails-f46e841f7217dd839ce166ec9a592f0dec127673.zip
removed ambiguity from autosave description
Diffstat (limited to 'activerecord/lib/active_record/associations.rb')
-rw-r--r--activerecord/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 1b9b725dd4..f540aa7f25 100644
--- a/activerecord/lib/active_record/associations.rb
+++ b/activerecord/lib/active_record/associations.rb
@@ -303,7 +303,7 @@ module ActiveRecord
# You can manipulate objects and associations before they are saved to the database, but there is some special behavior you should be
# aware of, mostly involving the saving of associated objects.
#
- # Unless you set the :autosave option on a <tt>has_one</tt>, <tt>belongs_to</tt>,
+ # You can set the :autosave option on a <tt>has_one</tt>, <tt>belongs_to</tt>,
# <tt>has_many</tt>, or <tt>has_and_belongs_to_many</tt> association. Setting it
# to +true+ will _always_ save the members, whereas setting it to +false+ will
# _never_ save the members.