From 8af2b758483839272b7c135f4772c1310c7081bd Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Thu, 6 Oct 2022 14:48:17 +0100 Subject: [PATCH] docs(fromto): extra fix in indentation and white-spaces --- subjects/fromto/README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/subjects/fromto/README.md b/subjects/fromto/README.md index 908df890f..988927679 100644 --- a/subjects/fromto/README.md +++ b/subjects/fromto/README.md @@ -37,16 +37,17 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - fmt.Print(piscine.FromTo(1, 10)) - fmt.Print(piscine.FromTo(10, 1)) - fmt.Print(piscine.FromTo(10, 10)) - fmt.Print(piscine.FromTo(100, 10)) + fmt.Print(piscine.FromTo(1, 10)) + fmt.Print(piscine.FromTo(10, 1)) + fmt.Print(piscine.FromTo(10, 10)) + fmt.Print(piscine.FromTo(100, 10)) } + ``` And its output: