1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

[ci skip] Fix typo, will_save_change_to_attribute -> will_save_change_to_attribute?

This commit is contained in:
s-mori 2019-12-11 22:26:49 +09:00
parent 42111f85df
commit ce0b8ffbd6

View file

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