From 381472716b7177f3a067a6bbe72d07f41c7d578c Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 24 Jun 2022 10:58:47 +0100 Subject: [PATCH] docs: Add spaces between elements of slice --- subjects/popint/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/popint/README.md b/subjects/popint/README.md index 8cbf7004..1a00090f 100644 --- a/subjects/popint/README.md +++ b/subjects/popint/README.md @@ -25,7 +25,7 @@ import ( ) func main() { - ints := {6,7,8,9,} + ints := {6, 7, 8, 9,} l := piscine.PopInt(ints) fmt.Println(l) }