summaryrefslogtreecommitdiff
path: root/array.c
diff options
context:
space:
mode:
authorS-H-GAMELINKS <gamelinks007@gmail.com>2020-11-06 01:50:24 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-11-10 11:04:00 +0900
commit8b3653b484a1130987c6b774c71e69a4a64a4f27 (patch)
tree6b063cbd878c2e1c3ee498d91506467781d88dbd /array.c
parentb557c5768c7642d232a6a0268d6876651d40204b (diff)
Fix links
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3738
Diffstat (limited to 'array.c')
-rw-r--r--array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/array.c b/array.c
index 8cb9f51a86..6a7a790fec 100644
--- a/array.c
+++ b/array.c
@@ -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;