From 000ba6542c98ec146bb0e95109279ed925d549d4 Mon Sep 17 00:00:00 2001 From: Tiago Collot Date: Mon, 17 Oct 2022 14:10:15 +0100 Subject: [PATCH] docs(jumpover): fix indentation --- subjects/jumpover/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/subjects/jumpover/README.md b/subjects/jumpover/README.md index 851c2f67..1f7b4b81 100644 --- a/subjects/jumpover/README.md +++ b/subjects/jumpover/README.md @@ -24,15 +24,15 @@ Here is a possible program to test your function: package main import ( - "fmt" - "piscine" + "fmt" + "piscine" ) func main() { - fmt.Print(piscine.JumpOver("1010101010")) - fmt.Print(piscine.JumpOver("")) - fmt.Print(piscine.JumpOver("t w e l v e")) - fmt.Print(piscine.JumpOver("12")) + fmt.Print(piscine.JumpOver("1010101010")) + fmt.Print(piscine.JumpOver("")) + fmt.Print(piscine.JumpOver("t w e l v e")) + fmt.Print(piscine.JumpOver("12")) } ```