From 1b8355eac141cba796029d00d7d0510b034c8d94 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Thu, 13 Oct 2022 15:54:37 +0100 Subject: [PATCH] docs(stringtointslice): fix indentation --- subjects/stringtointslice/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/subjects/stringtointslice/README.md b/subjects/stringtointslice/README.md index 89354d28..e8802d8f 100644 --- a/subjects/stringtointslice/README.md +++ b/subjects/stringtointslice/README.md @@ -20,14 +20,14 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - fmt.Println(piscine.StringToIntSlice("A quick brown fox jumps over the lazy dog")) - fmt.Println(piscine.StringToIntSlice("Converted this string into an int")) - fmt.Println(piscine.StringToIntSlice("hello THERE")) + fmt.Println(piscine.StringToIntSlice("A quick brown fox jumps over the lazy dog")) + fmt.Println(piscine.StringToIntSlice("Converted this string into an int")) + fmt.Println(piscine.StringToIntSlice("hello THERE")) } ```