From 0e6b0d3033bcfc8540c84ac3b98ec3e75d6ded86 Mon Sep 17 00:00:00 2001 From: Nicolas Kaiser Date: Fri, 23 Nov 2012 16:37:57 +0100 Subject: [PATCH] Fix misspelled "initialize" --- examples/arrays/arrays.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/arrays/arrays.go b/examples/arrays/arrays.go index 7add42a..b0464bd 100644 --- a/examples/arrays/arrays.go +++ b/examples/arrays/arrays.go @@ -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)