aboutsummaryrefslogtreecommitdiffstats
path: root/ext/dbm
diff options
context:
space:
mode:
authorKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-07-28 19:51:07 +0900
committerKazuhiro NISHIYAMA <zn@mbf.nifty.com>2020-07-28 19:51:54 +0900
commit946cd6c5348d7dd12ecc41e79c3ca9803d2ca7f0 (patch)
tree2ddf4483af71549f042973a94d656bfc23d246ed /ext/dbm
parentf44114b502f4ae793f95d0be14b094cfe7c4c0e7 (diff)
downloadruby-946cd6c5348d7dd12ecc41e79c3ca9803d2ca7f0.tar.gz
Use https instead of http
Diffstat (limited to 'ext/dbm')
-rw-r--r--ext/dbm/dbm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/dbm/dbm.c b/ext/dbm/dbm.c
index bc1d527735..de7536651c 100644
--- a/ext/dbm/dbm.c
+++ b/ext/dbm/dbm.c
@@ -980,7 +980,7 @@ fdbm_reject(VALUE obj)
* == Introduction
*
* The DBM class provides a wrapper to a Unix-style
- * {dbm}[http://en.wikipedia.org/wiki/Dbm] or Database Manager library.
+ * {dbm}[https://en.wikipedia.org/wiki/Dbm] or Database Manager library.
*
* Dbm databases do not have tables or columns; they are simple key-value
* data stores, like a Ruby Hash except not resident in RAM. Keys and values
@@ -992,7 +992,7 @@ fdbm_reject(VALUE obj)
* - The original ndbm library is released in 4.3BSD.
* It is based on dbm library in Unix Version 7 but has different API to
* support multiple databases in a process.
- * - {Berkeley DB}[http://en.wikipedia.org/wiki/Berkeley_DB] versions
+ * - {Berkeley DB}[https://en.wikipedia.org/wiki/Berkeley_DB] versions
* 1 thru 6, also known as BDB and Sleepycat DB, now owned by Oracle
* Corporation.
* - Berkeley DB 1.x, still found in 4.4BSD derivatives (FreeBSD, OpenBSD, etc).