From f92cefd26dcefbcd842f989eb034f9ade703f304 Mon Sep 17 00:00:00 2001 From: Brian Luft Date: Thu, 11 Oct 2012 10:42:35 -0700 Subject: [PATCH] Fixes typo of variable name --- 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 5125a22..a5664e8 100644 --- a/examples/arrays/arrays.go +++ b/examples/arrays/arrays.go @@ -7,7 +7,7 @@ import "fmt" func main() { - // Here we create an array `x` that will hold exactly + // Here we create an array `a` that will hold exactly // 5 `int`s. The type of elements and length are both // part of the array's type. By default an array is // zero-valued, which for `int`s means `0`s.