From f45203f85b8730e62bd0b7e5b1525d76429c26d7 Mon Sep 17 00:00:00 2001 From: Kevin Gibbons Date: Wed, 21 Feb 2024 08:53:26 -0800 Subject: [PATCH] update description in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 13959e6..0550eed 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Also, summing a list of floating point numbers can be done more precisely than t ## Proposal -Add a variadic `Math.sumExact` method which returns the sum of its arguments using a more precise algorithm than naive summation. +Add an iterable-taking `Math.sumExact` method which returns the sum of the values in the iterable using a more precise algorithm than naive summation. ```js let values = [1e20, 0.1, -1e20];