Fix typo in set_callback docs. [ci skip]

This commit is contained in:
Gilad Zohari 2013-09-06 11:53:17 +03:00
parent c4fdeb3d53
commit fc4b37c4fb
1 changed files with 1 additions and 1 deletions

View File

@ -574,7 +574,7 @@ module ActiveSupport
#
# set_callback :save, :before_meth
#
# The callback can specified as a symbol naming an instance method; as a
# The callback can be specified as a symbol naming an instance method; as a
# proc, lambda, or block; as a string to be instance evaluated; or as an
# object that responds to a certain method determined by the <tt>:scope</tt>
# argument to +define_callback+.