Merge remote-tracking branch 'nikai3d/patch-1'

This commit is contained in:
Mark McGranaghan 2012-11-23 14:42:19 -08:00
commit bce70c16e0

View File

@ -24,7 +24,7 @@ func main() {
// The builtin `len` returns the length of an array.
fmt.Println("len:", len(a))
// Use this syntax to declare and initalize an array
// Use this syntax to declare and initialize an array
// in one line.
b := [5]int{1, 2, 3, 4, 5}
fmt.Println("dcl:", b)