go: remove extraneous parentheses

This commit is contained in:
Rico Sta. Cruz 2017-09-19 13:06:40 +08:00
parent d63fedde3b
commit eee7cdade0
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 1 additions and 1 deletions

2
go.md
View File

@ -17,7 +17,7 @@ updated: 2017-09-15
// hello.go // hello.go
package main package main
import ( "fmt" ) import "fmt"
func main() { func main() {
message := greetMe("world") message := greetMe("world")