From 5a4d2a63873ce01a99c121b75dab7a7830c96625 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 8cbf70042..1a00090f9 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) }