aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorKevin Huang <kevin.ziwen.huang@gmail.com>2017-01-30 22:21:10 -0800
committerKevin Huang <kevin.ziwen.huang@gmail.com>2017-01-30 22:21:10 -0800
commit0c7523a1fee646a26f7f3a938cca20be7c6a33fe (patch)
tree6b3c5d81849ab728d0528be3d553a52bb29531ac /activerecord
parent44901ca9039dcf512a706b06c77e11004e661666 (diff)
downloadrails-0c7523a1fee646a26f7f3a938cca20be7c6a33fe.tar.gz
rails-0c7523a1fee646a26f7f3a938cca20be7c6a33fe.tar.bz2
rails-0c7523a1fee646a26f7f3a938cca20be7c6a33fe.zip
Fix grammar typo about sort in finder_methods.rb
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/relation/finder_methods.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb
index 6663bdb244..4548944fe6 100644
--- a/activerecord/lib/active_record/relation/finder_methods.rb
+++ b/activerecord/lib/active_record/relation/finder_methods.rb
@@ -17,8 +17,8 @@ module ActiveRecord
# Person.where("administrator = 1").order("created_on DESC").find(1)
#
# NOTE: The returned records may not be in the same order as the ids you
- # provide since database rows are unordered. You'd need to provide an explicit QueryMethods#order
- # option if you want the results are sorted.
+ # provide since database rows are unordered. You will need to provide an explicit QueryMethods#order
+ # option if you want the results to be sorted.
#
# ==== Find with lock
#