aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorGilad Zohari <gzohari@gmail.com>2013-09-06 11:53:17 +0300
committerGilad Zohari <gzohari@gmail.com>2013-09-06 11:53:17 +0300
commitfc4b37c4fbbb0258f4572105cc9477b7a7bbff2e (patch)
tree20b6f08bb2a3a87dcf8617f2a85a20c2fa3248a1 /activesupport/lib/active_support
parentc4fdeb3d53ac229de13c795c083006fc92025c9e (diff)
downloadrails-fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e.tar.gz
rails-fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e.tar.bz2
rails-fc4b37c4fbbb0258f4572105cc9477b7a7bbff2e.zip
Fix typo in set_callback docs. [ci skip]
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/callbacks.rb2
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+.