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

Rdoc formatting fix: <b> instead of MD-style asterisks

[ci skip]
This commit is contained in:
T.J. Schuck 2018-02-14 12:04:46 -05:00
parent 79aa6158b8
commit 98f77ecb5b

View file

@ -142,7 +142,7 @@ module ActiveRecord
# failed due to validation errors it won't be persisted, you get what
# #create returns in such situation.
#
# Please note *this method is not atomic*, it runs first a SELECT, and if
# Please note <b>this method is not atomic</b>, it runs first a SELECT, and if
# there are no results an INSERT is attempted. If there are other threads
# or processes there is a race condition between both calls and it could
# be the case that you end up with two similar records.