From ebb0c6994956f8a8d758e97ec1c0ec61659d03d2 Mon Sep 17 00:00:00 2001
From: BrandonY <brandony@gmail.com>
Date: Fri, 12 Oct 2012 00:01:39 -0700
Subject: [PATCH] Fix misspelled "declare"

---
 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 a5664e8..7add42a 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 decalare and initalize an array
+    // Use this syntax to declare and initalize an array
     // in one line.
     b := [5]int{1, 2, 3, 4, 5}
     fmt.Println("dcl:", b)