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") } ```