wrong comments

This commit is contained in:
Andrew Hurley 2022-11-12 15:23:04 +08:00
parent 173a1a39ec
commit 6bc8c10eed
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ func Hello(name string) (string,error) {
}
// Return a greeting that embeds the name in a message.
message := fmt.Sprintf(randomFormat(), name)
# message := fmt.Sprintf("Hi, %v. Welcome!", name)
// message := fmt.Sprintf("Hi, %v. Welcome!", name)
return message, nil
}