From 93e97d5ec3cd955e0b0ae8ac376ea35e89a2d27c Mon Sep 17 00:00:00 2001 From: Shreyes Srivastava Date: Sun, 1 May 2022 15:52:55 +0530 Subject: [PATCH] Updated Println statements Can someone change the image as well? --- Days/day11.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Days/day11.md b/Days/day11.md index e8eef01..a429ea3 100644 --- a/Days/day11.md +++ b/Days/day11.md @@ -62,7 +62,7 @@ func main() { const daystotal = 90 fmt.Println("Welcome to", challenge) - fmt.Println("This is a", daystotal, "challenge") + fmt.Println("This is a", daystotal, "days challenge") } ``` You can find the above code snippet in [day11_example2.go](Go/day11_example2.go) @@ -86,7 +86,7 @@ func main() { var dayscomplete = 11 fmt.Println("Welcome to", challenge, "") - fmt.Println("This is a", daystotal, "challenge and you have completed", dayscomplete, "days") + fmt.Println("This is a", daystotal, " days challenge and you have completed", dayscomplete, "days") fmt.Println("Great work") } ```