From 3d8156f44c366c730b929622e36258c1980344f6 Mon Sep 17 00:00:00 2001 From: jrosendo Date: Thu, 10 Nov 2022 14:06:35 +0000 Subject: [PATCH] docs(multorsum): rephrase one sentence --- subjects/multorsum/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/multorsum/README.md b/subjects/multorsum/README.md index cbd2cab4..f125c991 100644 --- a/subjects/multorsum/README.md +++ b/subjects/multorsum/README.md @@ -4,7 +4,7 @@ Write a function that receives a slice of `int` and an `int` representing the initial value as arguments. -You should traverse the slice and for each `int` check the following restrictions: +The function should go through the slice and for each `int` check the following restrictions: - If the `int` is odd, multiply it by the init value. Return the accumulated value after traversing the entire slice. - If the `int` is even, add it to the init value. Return the accumulated value after traversing the entire slice.