Commit 6f614950 authored by John Bampton's avatar John Bampton

🔒 Fix missing HTTPS on links

parent 563ebbf0
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
_This is an English translation of [Matz's blog post][matz blog post] _This is an English translation of [Matz's blog post][matz blog post]
written in Japanese._ written in Japanese._
_Some parts are updated to reflect recent changes._ _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 When you are extending mruby using C language, you may encounter
mysterious "arena overflow error" or memory leak or very slow mysterious "arena overflow error" or memory leak or very slow
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** 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 ]
*/ */
/** /**
......
...@@ -13,7 +13,7 @@ Add the line below to your build configuration. ...@@ -13,7 +13,7 @@ Add the line below to your build configuration.
## Implemented methods ## Implemented methods
### IO ### 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 | | method | mruby-io | memo |
| ------------------------- | -------- | ---- | | ------------------------- | -------- | ---- |
...@@ -97,7 +97,7 @@ Add the line below to your build configuration. ...@@ -97,7 +97,7 @@ Add the line below to your build configuration.
| IO#write_nonblock | | | | IO#write_nonblock | | |
### File ### 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 | | method | mruby-io | memo |
| --------------------------- | -------- | ---- | | --------------------------- | -------- | ---- |
......
...@@ -23,6 +23,6 @@ usleep(10000) ...@@ -23,6 +23,6 @@ usleep(10000)
# License # License
under the MIT License: under the MIT License:
* http://www.opensource.org/licenses/mit-license.php * https://www.opensource.org/licenses/mit-license.php
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ** 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> #include <time.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment