summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-12-19 16:42:40 +0900
committerGitHub <[email protected]>2020-12-19 16:42:40 +0900
commit563ebbf0833c6642ce8d95795e53748227dd6985 (patch)
treea5dfb9895dfd14437c220eac2072c4d95eb1b7db
parent08d4365252d421f71800992b34684e320ce41ca6 (diff)
parentf7c5c00d6ea47ee940525b52acb1d9f495d62ae2 (diff)
downloadmruby-563ebbf0833c6642ce8d95795e53748227dd6985.tar.gz
mruby-563ebbf0833c6642ce8d95795e53748227dd6985.zip
Merge pull request #5229 from jbampton/fix-links
🔒 Fix missing HTTPS on links
-rw-r--r--CONTRIBUTING.md2
-rw-r--r--README.md4
-rw-r--r--doc/guides/compile.md2
-rw-r--r--mrbgems/mruby-compiler/core/y.tab.c2
-rw-r--r--mrbgems/mruby-random/src/random.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index fec2e8907..fa1c847a9 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -61,5 +61,5 @@ language itself. Please note the following hints for your Ruby code:
#### Comply with the Ruby standard (ISO/IEC 30170:2012)
mruby is currently targeting to execute Ruby code which complies to ISO/IEC
-30170:2012 (http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579),
+30170:2012 (https://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579),
unless there's a clear reason, e.g. the latest Ruby has changed behavior from ISO.
diff --git a/README.md b/README.md
index 5abf3445d..e5d62ea3d 100644
--- a/README.md
+++ b/README.md
@@ -86,12 +86,12 @@ Please ask us if you want to distribute your code under another license.
## How to Contribute
See the [contribution guidelines][contribution-guidelines], and then send a pull
-request to <http://github.com/mruby/mruby>. We consider you have granted
+request to <https://github.com/mruby/mruby>. We consider you have granted
non-exclusive right to your contributed code under MIT license. If you want to
be named as one of mruby developers, please include an update to the AUTHORS
file in your pull request.
-[ISO-standard]: http://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
+[ISO-standard]: https://www.iso.org/iso/iso_catalogue/catalogue_tc/catalogue_detail.htm?csnumber=59579
[build-status-img]: https://travis-ci.org/mruby/mruby.svg?branch=master
[contribution-guidelines]: https://github.com/mruby/mruby/blob/master/CONTRIBUTING.md
[travis-ci]: https://travis-ci.org/mruby/mruby
diff --git a/doc/guides/compile.md b/doc/guides/compile.md
index 6fa8a761b..b0dedfc8e 100644
--- a/doc/guides/compile.md
+++ b/doc/guides/compile.md
@@ -76,7 +76,7 @@ toolchain :clang
#### Visual Studio 2010, 2012 and 2013
Toolchain configuration for Visual Studio on Windows. If you use the
-[Visual Studio Command Prompt](http://msdn.microsoft.com/en-us/library/ms229859\(v=vs.110\).aspx),
+[Visual Studio Command Prompt](https://msdn.microsoft.com/en-us/library/ms229859\(v=vs.110\).aspx),
you normally do not have to specify this manually, since it gets automatically detected by our build process.
```ruby
toolchain :visualcpp
diff --git a/mrbgems/mruby-compiler/core/y.tab.c b/mrbgems/mruby-compiler/core/y.tab.c
index a1852b831..012f4a74e 100644
--- a/mrbgems/mruby-compiler/core/y.tab.c
+++ b/mrbgems/mruby-compiler/core/y.tab.c
@@ -16,7 +16,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
+ along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
diff --git a/mrbgems/mruby-random/src/random.c b/mrbgems/mruby-random/src/random.c
index 0a5df6bd0..7ae706c86 100644
--- a/mrbgems/mruby-random/src/random.c
+++ b/mrbgems/mruby-random/src/random.c
@@ -19,7 +19,7 @@ To the extent possible under law, the author has dedicated all copyright
and related and neighboring rights to this software to the public domain
worldwide. This software is distributed without any warranty.
-See <http://creativecommons.org/publicdomain/zero/1.0/>. */
+See <https://creativecommons.org/publicdomain/zero/1.0/>. */
#include <stdint.h>