aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-05-28 14:01:39 -0400
committerGitHub <noreply@github.com>2018-05-28 14:01:39 -0400
commit168598c0f1201fd310c972041919bede9f8f9511 (patch)
tree11bc39b26e0806336b8d3d9007969520343998fd /activerecord
parent39192e39adbd8117f4d24303aff17930dbda8ba8 (diff)
parent53334ab776b27c541dfd475914fd0e13d4f88f8d (diff)
downloadrails-168598c0f1201fd310c972041919bede9f8f9511.tar.gz
rails-168598c0f1201fd310c972041919bede9f8f9511.tar.bz2
rails-168598c0f1201fd310c972041919bede9f8f9511.zip
Merge pull request #33005 from mechanicles/fix-sentence
Fix sentence [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/callbacks.rb b/activerecord/lib/active_record/callbacks.rb
index 0a29c5134e..b6852bfc71 100644
--- a/activerecord/lib/active_record/callbacks.rb
+++ b/activerecord/lib/active_record/callbacks.rb
@@ -128,7 +128,7 @@ module ActiveRecord
# end
# end
#
- # So you specify the object you want messaged on a given callback. When that callback is triggered, the object has
+ # So you specify the object you want to be messaged on a given callback. When that callback is triggered, the object has
# a method by the name of the callback messaged. You can make these callbacks more flexible by passing in other
# initialization data such as the name of the attribute to work with:
#