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")) } ```