docs(stringtointslice): fix indentation

This commit is contained in:
Tiago Collot 2022-10-13 15:54:37 +01:00
parent bf3fcb6f50
commit 1b8355eac1
1 changed files with 5 additions and 5 deletions

View File

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