From 43291628d345c07727ccfb98a14238ff3a52a26d Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Thu, 29 Sep 2022 17:42:37 +0100 Subject: [PATCH] docs(shoppingsummarycounter): fix indentation --- subjects/shoppingsummarycounter/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/shoppingsummarycounter/README.md b/subjects/shoppingsummarycounter/README.md index 5c190da3..20ec3a0f 100644 --- a/subjects/shoppingsummarycounter/README.md +++ b/subjects/shoppingsummarycounter/README.md @@ -22,15 +22,15 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - summary := "Burger Water Carrot Coffee Water Water Chips Carrot Carrot Burger Carrot Water" - for index,element := range piscine.ShoppingSummaryCounter(summary){ - fmt.Println(index,"=>",element) - } + summary := "Burger Water Carrot Coffee Water Water Chips Carrot Carrot Burger Carrot Water" + for index, element := range piscine.ShoppingSummaryCounter(summary) { + fmt.Println(index,"=>",element) + } } ```