diff options
author | Neeraj Singh <neerajdotname@gmail.com> | 2010-07-28 13:10:04 -0400 |
---|---|---|
committer | Neeraj Singh <neerajdotname@gmail.com> | 2010-07-28 13:10:04 -0400 |
commit | 31f8a0cd23ca3d1137968e95bce47a431555bdd6 (patch) | |
tree | 5058ed639075ac25d8e5186c1acb94679fe75ed7 /activerecord/lib | |
parent | 51924d49af18635cab46720e208c34d75ed8363e (diff) | |
download | rails-31f8a0cd23ca3d1137968e95bce47a431555bdd6.tar.gz rails-31f8a0cd23ca3d1137968e95bce47a431555bdd6.tar.bz2 rails-31f8a0cd23ca3d1137968e95bce47a431555bdd6.zip |
adding punctuations
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/persistence.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index 36530d2b63..38b91652ee 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -106,10 +106,10 @@ module ActiveRecord # This is especially useful for boolean flags on existing records. Also note that # # * The attribute being updated must be a column name. - # * Validation is skipped - # * No callbacks are invoked - # * updated_at/updated_on column is updated if that column is available - # * Does not work on associations + # * Validation is skipped. + # * No callbacks are invoked. + # * updated_at/updated_on column is updated if that column is available. + # * Does not work on associations. # * Does not work on attr_accessor attributes. # * Does not work on new record. <tt>record.new_record?</tt> should return false for this method to work. # * Updates only the attribute that is input to the method. If there are other changed attributes then |