1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix links

This commit is contained in:
S-H-GAMELINKS 2020-11-06 01:50:24 +09:00 committed by Hiroshi SHIBATA
parent b557c5768c
commit 8b3653b484
Notes: git 2020-11-10 11:04:27 +09:00
2 changed files with 2 additions and 2 deletions

View file

@ -7687,7 +7687,7 @@ rb_ary_sum(int argc, VALUE *argv, VALUE ary)
if (RB_FLOAT_TYPE_P(e)) {
/*
* Kahan-Babuska balancing compensated summation algorithm
* See http://link.springer.com/article/10.1007/s00607-005-0139-x
* See https://link.springer.com/article/10.1007/s00607-005-0139-x
*/
double f, c;
double x, t;

2
enum.c
View file

@ -3903,7 +3903,7 @@ sum_iter_Kahan_Babuska(VALUE i, struct enum_sum_memo *memo)
{
/*
* Kahan-Babuska balancing compensated summation algorithm
* See http://link.springer.com/article/10.1007/s00607-005-0139-x
* See https://link.springer.com/article/10.1007/s00607-005-0139-x
*/
double x;