1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix grammar typo about sort in finder_methods.rb

This commit is contained in:
Kevin Huang 2017-01-30 22:21:10 -08:00
parent 44901ca903
commit 0c7523a1fe
No known key found for this signature in database
GPG key ID: C541ECF12CF7CF7F

View file

@ -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
#