From f96c25be730c083b0a62f788d9d3d479a4641806 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Fri, 15 Sep 2017 18:04:16 +0800 Subject: [PATCH] go: fix typo --- go.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.md b/go.md index e40bead48..2de762574 100644 --- a/go.md +++ b/go.md @@ -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