diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb index 16afb3b7897e1..25cd392f9b6c3 100755 --- a/activerecord/lib/active_record/base.rb +++ b/activerecord/lib/active_record/base.rb @@ -1735,7 +1735,7 @@ def clone # Updates a single attribute and saves the record. This is especially useful for boolean flags on existing records. # Note: This method is overwritten by the Validation module that'll make sure that updates made with this method - # doesn't get subjected to validation checks. Hence, attributes can be updated even if the full object isn't valid. + # aren't subjected to validation checks. Hence, attributes can be updated even if the full object isn't valid. def update_attribute(name, value) send(name.to_s + '=', value) save