aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/transactions.rb
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2017-08-22 12:09:47 +0900
committerGitHub <noreply@github.com>2017-08-22 12:09:47 +0900
commit633e9745f8eafb0d1d5523ec761fdee420bcbc91 (patch)
tree14adef8d8f954ebdda84a4ccfe5b34b3d5d2b401 /activerecord/lib/active_record/transactions.rb
parent38952d8a4a13d2d54156011e6f43a1ca2740745c (diff)
parentc7641eb29b30b4cab61da3a0cfd6e4154f41a79b (diff)
downloadrails-633e9745f8eafb0d1d5523ec761fdee420bcbc91.tar.gz
rails-633e9745f8eafb0d1d5523ec761fdee420bcbc91.tar.bz2
rails-633e9745f8eafb0d1d5523ec761fdee420bcbc91.zip
Merge pull request #30354 from yhirano55/use_https_instead_of_http_in_activerecord
[activerecord] Update links to use https instead of http [ci skip]
Diffstat (limited to 'activerecord/lib/active_record/transactions.rb')
-rw-r--r--activerecord/lib/active_record/transactions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/transactions.rb b/activerecord/lib/active_record/transactions.rb
index 603dee8c0d..6761f2da25 100644
--- a/activerecord/lib/active_record/transactions.rb
+++ b/activerecord/lib/active_record/transactions.rb
@@ -170,7 +170,7 @@ module ActiveRecord
# writing, the only database that we're aware of that supports true nested
# transactions, is MS-SQL. Because of this, Active Record emulates nested
# transactions by using savepoints on MySQL and PostgreSQL. See
- # http://dev.mysql.com/doc/refman/5.7/en/savepoint.html
+ # https://dev.mysql.com/doc/refman/5.7/en/savepoint.html
# for more information about savepoints.
#
# === \Callbacks