aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
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 /string.c
parentf44114b502f4ae793f95d0be14b094cfe7c4c0e7 (diff)
downloadruby-946cd6c5348d7dd12ecc41e79c3ca9803d2ca7f0.tar.gz
Use https instead of http
Diffstat (limited to 'string.c')
-rw-r--r--string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/string.c b/string.c
index 8bcc6bb9c8..2759aaa94a 100644
--- a/string.c
+++ b/string.c
@@ -1729,7 +1729,7 @@ rb_str_init(int argc, VALUE *argv, VALUE str)
/*
* UTF-8 leading bytes have either 0xxxxxxx or 11xxxxxx
- * bit representation. (see http://en.wikipedia.org/wiki/UTF-8)
+ * bit representation. (see https://en.wikipedia.org/wiki/UTF-8)
* Therefore, the following pseudocode can detect UTF-8 leading bytes.
*
* if (!(byte & 0x80))