diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-28 19:51:07 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2020-07-28 19:51:54 +0900 |
commit | 946cd6c5348d7dd12ecc41e79c3ca9803d2ca7f0 (patch) | |
tree | 2ddf4483af71549f042973a94d656bfc23d246ed /ext/dbm/dbm.c | |
parent | f44114b502f4ae793f95d0be14b094cfe7c4c0e7 (diff) |
Use https instead of http
Diffstat (limited to 'ext/dbm/dbm.c')
-rw-r--r-- | ext/dbm/dbm.c | 4 |
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). |