Merge pull request #37936 from s-mori/fix_typo_in_ar_dirty

Fix typo in ActiveRecord::AttributeMethods::Dirty
This commit is contained in:
Vipul A M 2019-12-11 19:53:41 +05:30 committed by GitHub
commit f185190a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ module ActiveRecord
# This method is useful in validations and before callbacks to determine
# if the next call to +save+ will change a particular attribute. It can be
# invoked as +will_save_change_to_name?+ instead of
# <tt>will_save_change_to_attribute("name")</tt>.
# <tt>will_save_change_to_attribute?("name")</tt>.
#
# ==== Options
#