docs: Fix small typographical errors in #find_or_create_by docs

[ci skip]
This commit is contained in:
Conrad Beach 2023-11-17 13:42:41 -07:00
parent e5d3d782b6
commit 43ff986402
No known key found for this signature in database
GPG Key ID: 0D9C3895C409437E
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ module ActiveRecord
#
# If creation failed because of a unique constraint, this method will
# assume it encountered a race condition and will try finding the record
# once more If somehow the second find still find no record because a
# concurrent DELETE happened, it will then raise an
# once more. If somehow the second find still does not find a record
# because a concurrent DELETE happened, it will then raise an
# ActiveRecord::RecordNotFound exception.
#
# Please note <b>this method is not atomic</b>, it runs first a SELECT,