From e62a381533add3b724ca43d18fc838904c0b19da Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Mon, 17 Oct 2022 15:19:20 +0100 Subject: [PATCH] docs(descendappendrange): fix indentation --- subjects/descendappendrange/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subjects/descendappendrange/README.md b/subjects/descendappendrange/README.md index 08da2d82..b48c23f0 100644 --- a/subjects/descendappendrange/README.md +++ b/subjects/descendappendrange/README.md @@ -26,13 +26,13 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - fmt.Println(piscine.DescendAppendRange(10, 5)) - fmt.Println(piscine.DescendAppendRange(5, 10)) + fmt.Println(piscine.DescendAppendRange(10, 5)) + fmt.Println(piscine.DescendAppendRange(5, 10)) } ```