From d601a9ff55927ccf35abf107b0a8f0e2e560ed44 Mon Sep 17 00:00:00 2001 From: Mohamed Zaboub <45185441+mohamedLazyBob@users.noreply.github.com> Date: Mon, 13 Jun 2022 22:40:35 +0100 Subject: [PATCH] chore: replace spaces by tabulation --- subjects/issamestring/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/issamestring/README.md b/subjects/issamestring/README.md index cb36c52b..f3b7b46c 100644 --- a/subjects/issamestring/README.md +++ b/subjects/issamestring/README.md @@ -27,7 +27,7 @@ import ( ) func main() { - fmt.Println(piscine.IsSameString("hello world!", "HELLO WORLD!")) + fmt.Println(piscine.IsSameString("hello world!", "HELLO WORLD!")) fmt.Println(piscine.IsSameString("0101 is awesome", "0101 is AWESOME")) fmt.Println(piscine.IsSameString("foo baz", "foo bar")) }