docs(descendappendrange): fix indentation

This commit is contained in:
Tiago Collot 2022-10-17 15:19:20 +01:00
parent 7f9f275547
commit e62a381533
1 changed files with 4 additions and 4 deletions

View File

@ -26,13 +26,13 @@ Here is a possible program to test your function:
package main package main
import ( import (
"fmt" "fmt"
"piscine" "piscine"
) )
func main() { func main() {
fmt.Println(piscine.DescendAppendRange(10, 5)) fmt.Println(piscine.DescendAppendRange(10, 5))
fmt.Println(piscine.DescendAppendRange(5, 10)) fmt.Println(piscine.DescendAppendRange(5, 10))
} }
``` ```