From c98b517c71d87df1674e1a390235fd066c9baab3 Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 8 Jul 2022 09:14:36 +0100 Subject: [PATCH] docs: Add returning type --- 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 10a4a394..3ca7bf25 100644 --- a/subjects/multorsum/README.md +++ b/subjects/multorsum/README.md @@ -7,7 +7,7 @@ Write a function that receives a slice of int and and int representing the initi ### Expected function ```go -func MultOrSum(ints []int, init int) { +func MultOrSum(ints []int, init int) int { } ```