aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2018-02-14 12:24:36 -0500
committerGitHub <noreply@github.com>2018-02-14 12:24:36 -0500
commit57495086f0bb1315ea287f8d6bafad8fd48e18b2 (patch)
treeefa203daed487de833097cc7bb278fd4caaf3c11 /activerecord/lib
parent2e87ea6d7081d8be0f4bf28ac436a9a9dac48c7a (diff)
parent98f77ecb5b5b49bd526a2a80944cf230a72dc99b (diff)
downloadrails-57495086f0bb1315ea287f8d6bafad8fd48e18b2.tar.gz
rails-57495086f0bb1315ea287f8d6bafad8fd48e18b2.tar.bz2
rails-57495086f0bb1315ea287f8d6bafad8fd48e18b2.zip
Merge pull request #31993 from tjschuck/rdoc_formatting_fix
Rdoc formatting fix: <b> instead of MD-style asterisks
Diffstat (limited to 'activerecord/lib')
-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.