aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation/finder_methods.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2019-03-07 10:50:15 +0100
committerGitHub <noreply@github.com>2019-03-07 10:50:15 +0100
commite056b9bfb07c4eb3bcc6672d885aadd72bec574f (patch)
tree0ccf64cdaef32c44316268463fb19c3bc91cb81a /activerecord/lib/active_record/relation/finder_methods.rb
parenta88b6f257b7c0df816181ce2c36bb7ecb6487a17 (diff)
parent755112c7b15ad5a8a8621ac307a55b6bbf487c7b (diff)
downloadrails-e056b9bfb07c4eb3bcc6672d885aadd72bec574f.tar.gz
rails-e056b9bfb07c4eb3bcc6672d885aadd72bec574f.tar.bz2
rails-e056b9bfb07c4eb3bcc6672d885aadd72bec574f.zip
Merge pull request #35503 from samjohn/cannot-grammar-correction
Replace “can not” with “cannot”.
Diffstat (limited to 'activerecord/lib/active_record/relation/finder_methods.rb')
-rw-r--r--activerecord/lib/active_record/relation/finder_methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb
index 74f323a278..e2efd4aa0d 100644
--- a/activerecord/lib/active_record/relation/finder_methods.rb
+++ b/activerecord/lib/active_record/relation/finder_methods.rb
@@ -7,7 +7,7 @@ module ActiveRecord
ONE_AS_ONE = "1 AS one"
# Find by id - This can either be a specific id (1), a list of ids (1, 5, 6), or an array of ids ([5, 6, 10]).
- # If one or more records can not be found for the requested ids, then ActiveRecord::RecordNotFound will be raised.
+ # If one or more records cannot be found for the requested ids, then ActiveRecord::RecordNotFound will be raised.
# If the primary key is an integer, find by id coerces its arguments by using +to_i+.
#
# Person.find(1) # returns the object for ID = 1