aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorT.J. Schuck <tj@tjschuck.com>2018-02-14 12:04:46 -0500
committerT.J. Schuck <tj@tjschuck.com>2018-02-14 12:04:55 -0500
commit98f77ecb5b5b49bd526a2a80944cf230a72dc99b (patch)
tree102d5def6960ffba6442a4738582c301b3817d78 /activerecord
parent79aa6158b8d56a4df3099bc111e0a12c24763f22 (diff)
downloadrails-98f77ecb5b5b49bd526a2a80944cf230a72dc99b.tar.gz
rails-98f77ecb5b5b49bd526a2a80944cf230a72dc99b.tar.bz2
rails-98f77ecb5b5b49bd526a2a80944cf230a72dc99b.zip
Rdoc formatting fix: <b> instead of MD-style asterisks
[ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/relation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb
index d71c430045..8e108e4be3 100644
--- a/activerecord/lib/active_record/relation.rb
+++ b/activerecord/lib/active_record/relation.rb
@@ -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.