From 8937b6b67de7409b9cec7e54c948e211feae50f7 Mon Sep 17 00:00:00 2001 From: bartbutenaers Date: Tue, 24 Aug 2021 08:58:33 +0200 Subject: [PATCH] Rounding typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8dc52aa..b676f7f 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Following operations are available: + **Round decimal places (rdec)**: round the number at a specified number of decimal places (from an array of two numbers). - Input = ```[1.23456, 3]``` => Output = ```[1.234]``` + Input = ```[1.23456, 3]``` => Output = ```[1.235]``` + **Sum (sum)**: sum of the all the numbers in the array.