diff options
author | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-09-06 03:36:49 -0700 |
---|---|---|
committer | Carlos Antonio da Silva <carlosantoniodasilva@gmail.com> | 2013-09-06 03:36:49 -0700 |
commit | 5f9ff8c3fcb4ccafe5a4ed51e9d6833514c27457 (patch) | |
tree | 20b6f08bb2a3a87dcf8617f2a85a20c2fa3248a1 /activesupport | |
parent | c4fdeb3d53ac229de13c795c083006fc92025c9e (diff) | |
parent | fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e (diff) | |
download | rails-5f9ff8c3fcb4ccafe5a4ed51e9d6833514c27457.tar.gz rails-5f9ff8c3fcb4ccafe5a4ed51e9d6833514c27457.tar.bz2 rails-5f9ff8c3fcb4ccafe5a4ed51e9d6833514c27457.zip |
Merge pull request #12148 from gzohari/callback-typo
Fix typo in set_callback docs. [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/callbacks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index 5c738572a8..c3aac31323 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -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+. |