[ci skip] fix a typo

This commit is contained in:
Yamaguchi.Tomoki 2016-07-15 19:43:58 +09:00
parent 62514c5db7
commit 68d35960f3
1 changed files with 1 additions and 1 deletions

View File

@ -793,7 +793,7 @@ module ActiveRecord
# Returns +true+ if the collection is empty. If the collection has been
# loaded it is equivalent
# to <tt>collection.size.zero?</tt>. If the collection has not been loaded,
# it is equivalent to <tt>collection.exists?</tt>. If the collection has
# it is equivalent to <tt>!collection.exists?</tt>. If the collection has
# not already been loaded and you are going to fetch the records anyway it
# is better to check <tt>collection.length.zero?</tt>.
#