go: fix typo

This commit is contained in:
Rico Sta. Cruz 2017-09-15 18:04:16 +08:00
parent e5779b05c6
commit f96c25be73
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

@ -79,7 +79,7 @@ Strings are of type `string`.
num := 3 // int
num := 3. // float64
num := 3 + 4i // complex128
num :+ byte('a') // byte (alias for uint8)
num := byte('a') // byte (alias for uint8)
```
```go