docs(shoppinglistsort): indentation fix

This commit is contained in:
Tiago Collot 2022-10-13 16:14:48 +01:00
parent 4d13d88fa7
commit 38868a8403
1 changed files with 4 additions and 4 deletions

View File

@ -22,13 +22,13 @@ Here is a possible program to test your function:
package main
import (
"fmt"
"piscine"
"fmt"
"piscine"
)
func main() {
slice := []string{"Banana", "Mushroom", "Salt", "Pepper","Tea", "Milk"}
fmt.Println(piscine.ShoppingListSort(slice))
slice := []string{"Banana", "Mushroom", "Salt", "Pepper", "Tea", "Milk"}
fmt.Println(piscine.ShoppingListSort(slice))
}
```