fix code formatting

This commit is contained in:
Nastya Kruglikova 2017-11-10 11:39:00 +02:00
parent 9b1f1373da
commit b97f2e9801
1 changed files with 1 additions and 1 deletions

2
go.md
View File

@ -26,7 +26,7 @@ func main() {
fmt.Println(message)
}
func greetMe(name string) (string) {
func greetMe(name string) string {
return "Hello, " + name + "!"
}
```