fix: day11.md day11_example1 add missing comma.

fix: day11.md day11_example2 add the last empty string parameter for consistency.

fix:  day11_example2.go add the last empty string parameter to match the documented example.
This commit is contained in:
Michael George
2022-06-16 06:31:27 +02:00
committed by GitHub
parent 737db96b67
commit ff70fd2b10
2 changed files with 3 additions and 3 deletions

View File

@ -6,6 +6,6 @@ func main() {
var challenge = "#90DaysOfDevOps"
const daystotal = 90
fmt.Println("Welcome to", challenge)
fmt.Println("Welcome to", challenge, "")
fmt.Println("This is a", daystotal, "challenge")
}