diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-12-19 16:59:11 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-19 16:59:11 +0900 |
| commit | 340f1f0094b41c30dc2377cca4a18a6466828091 (patch) | |
| tree | 196ad5766bdfea4818f61bbd9c1c90a7e3143936 | |
| parent | 563ebbf0833c6642ce8d95795e53748227dd6985 (diff) | |
| parent | 6f6149509a43ce96981d2cf46b5037bdb8509cc1 (diff) | |
| download | mruby-340f1f0094b41c30dc2377cca4a18a6466828091.tar.gz mruby-340f1f0094b41c30dc2377cca4a18a6466828091.zip | |
Merge pull request #5231 from jbampton/fix-links
🔒 Fix missing HTTPS on links
| -rw-r--r-- | doc/guides/gc-arena-howto.md | 2 | ||||
| -rw-r--r-- | include/mruby.h | 2 | ||||
| -rw-r--r-- | mrbgems/mruby-io/README.md | 4 | ||||
| -rw-r--r-- | mrbgems/mruby-sleep/README.md | 2 | ||||
| -rw-r--r-- | mrbgems/mruby-sleep/src/mrb_sleep.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/doc/guides/gc-arena-howto.md b/doc/guides/gc-arena-howto.md index aff7360e9..7c367c98a 100644 --- a/doc/guides/gc-arena-howto.md +++ b/doc/guides/gc-arena-howto.md @@ -3,7 +3,7 @@ _This is an English translation of [Matz's blog post][matz blog post] written in Japanese._ _Some parts are updated to reflect recent changes._ -[matz blog post]: http://www.rubyist.net/~matz/20130731.html +[matz blog post]: https://www.rubyist.net/~matz/20130731.html When you are extending mruby using C language, you may encounter mysterious "arena overflow error" or memory leak or very slow diff --git a/include/mruby.h b/include/mruby.h index a5116f9ee..6f58fd7cd 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -22,7 +22,7 @@ ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** -** [ MIT license: http://www.opensource.org/licenses/mit-license.php ] +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] */ /** diff --git a/mrbgems/mruby-io/README.md b/mrbgems/mruby-io/README.md index 9fb942e3a..51bdbe014 100644 --- a/mrbgems/mruby-io/README.md +++ b/mrbgems/mruby-io/README.md @@ -13,7 +13,7 @@ Add the line below to your build configuration. ## Implemented methods ### IO - - http://doc.ruby-lang.org/ja/1.9.3/class/IO.html + - https://doc.ruby-lang.org/ja/1.9.3/class/IO.html | method | mruby-io | memo | | ------------------------- | -------- | ---- | @@ -97,7 +97,7 @@ Add the line below to your build configuration. | IO#write_nonblock | | | ### File - - http://doc.ruby-lang.org/ja/1.9.3/class/File.html + - https://doc.ruby-lang.org/ja/1.9.3/class/File.html | method | mruby-io | memo | | --------------------------- | -------- | ---- | diff --git a/mrbgems/mruby-sleep/README.md b/mrbgems/mruby-sleep/README.md index 1c0a86c3a..68aa2c6d3 100644 --- a/mrbgems/mruby-sleep/README.md +++ b/mrbgems/mruby-sleep/README.md @@ -23,6 +23,6 @@ usleep(10000) # License under the MIT License: -* http://www.opensource.org/licenses/mit-license.php +* https://www.opensource.org/licenses/mit-license.php diff --git a/mrbgems/mruby-sleep/src/mrb_sleep.c b/mrbgems/mruby-sleep/src/mrb_sleep.c index 7771db56b..79a5af650 100644 --- a/mrbgems/mruby-sleep/src/mrb_sleep.c +++ b/mrbgems/mruby-sleep/src/mrb_sleep.c @@ -23,7 +23,7 @@ ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** -** [ MIT license: http://www.opensource.org/licenses/mit-license.php ] +** [ MIT license: https://www.opensource.org/licenses/mit-license.php ] */ #include <time.h> |
