From 2c324911d56c6c47a0681ea319be1d09404de83d Mon Sep 17 00:00:00 2001 From: estlop Date: Mon, 11 Jul 2022 19:07:02 +0100 Subject: [PATCH] docs: fix typo --- 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 3ca7bf25..128471c0 100644 --- a/subjects/multorsum/README.md +++ b/subjects/multorsum/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that receives a slice of int and and int representing the initial value. If the int is odd it should multiply the accumulated value. If it is even, it should be added instead. Return the result. If the slice is empty return 0. +Write a function that receives a slice of int and an int representing the initial value. If the int is odd it should multiply the accumulated value. If it is even, it should be added instead. Return the result. If the slice is empty return 0. ### Expected function