From 658f601da56b3f63b76f10eda7aa51bea7af7a88 Mon Sep 17 00:00:00 2001 From: James Funk Date: Sat, 17 Nov 2018 12:09:46 -0700 Subject: [PATCH] Correct description of Decimal::sum(). --- _data/methods.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/methods.yml b/_data/methods.yml index 43de4ad..6d6e2a1 100644 --- a/_data/methods.yml +++ b/_data/methods.yml @@ -359,7 +359,7 @@ sum: name: sum desc: 'The precision of the result will be the max of all precisions that were encountered during the calculation. The given precision should therefore be considered the minimum precision of the result. This method is equivalent to adding each value individually.' return: - desc: 'the average of all given values.' + desc: 'the sum of all given values.' type: Decimal params: -