diff options
author | Gilad Zohari <gzohari@gmail.com> | 2013-09-06 11:53:17 +0300 |
---|---|---|
committer | Gilad Zohari <gzohari@gmail.com> | 2013-09-06 11:53:17 +0300 |
commit | fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e (patch) | |
tree | 20b6f08bb2a3a87dcf8617f2a85a20c2fa3248a1 /activesupport | |
parent | c4fdeb3d53ac229de13c795c083006fc92025c9e (diff) | |
download | rails-fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e.tar.gz rails-fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e.tar.bz2 rails-fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e.zip |
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+. |