From a7c012310cbd807d64a83a68745cc94fe4dafbe9 Mon Sep 17 00:00:00 2001 From: estlop Date: Fri, 24 Jun 2022 11:14:01 +0100 Subject: [PATCH] docs: Add type to declaration in usage --- 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 1a00090f..d6ed63b2 100644 --- a/subjects/popint/README.md +++ b/subjects/popint/README.md @@ -25,7 +25,7 @@ import ( ) func main() { - ints := {6, 7, 8, 9,} + ints := int{6, 7, 8, 9,} l := piscine.PopInt(ints) fmt.Println(l) }