aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-07 10:42:31 -0800
committerZachary Scott <e@zzak.io>2014-12-07 10:42:31 -0800
commit9eb4869f80107be19b6d161a7f2e05449afee85a (patch)
tree4e33d57e683521e312975db35e8da1f4f1e4383d /activerecord/lib
parent4ff026e595cbc66189155fa4cc7d775f00dcff24 (diff)
parent480e911859aa267b7edae18c9d319c2b3a871e73 (diff)
downloadrails-9eb4869f80107be19b6d161a7f2e05449afee85a.tar.gz
rails-9eb4869f80107be19b6d161a7f2e05449afee85a.tar.bz2
rails-9eb4869f80107be19b6d161a7f2e05449afee85a.zip
Merge pull request #17959 from eileencodes/fix-grammar-on-reflection
Fix grammar of sentence in Reflection documentation [ci skip]
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/reflection.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/reflection.rb b/activerecord/lib/active_record/reflection.rb
index 96520d1d49..4202bc5665 100644
--- a/activerecord/lib/active_record/reflection.rb
+++ b/activerecord/lib/active_record/reflection.rb
@@ -39,9 +39,9 @@ module ActiveRecord
ar.aggregate_reflections = ar.aggregate_reflections.merge(name.to_s => reflection)
end
- # \Reflection enables interrogating of Active Record classes and objects
- # about their associations and aggregations. This information can,
- # for example, be used in a form builder that takes an Active Record object
+ # \Reflection enables the ability to examine the associations and aggregations of
+ # Active Record classes and objects. This information, for example,
+ # can be used in a form builder that takes an Active Record object
# and creates input fields for all of the attributes depending on their type
# and displays the associations to other objects.
#