summaryrefslogtreecommitdiffhomepage
path: root/go.html.markdown
diff options
context:
space:
mode:
authorLevi Bostian <levi.bostian@gmail.com>2014-09-05 21:02:38 -0500
committerLevi Bostian <levi.bostian@gmail.com>2014-09-05 21:02:38 -0500
commit291f6f6b22acf7962a180e6e12234aebcb20c5bd (patch)
treef5381646711b021230bda54110b227a79b332001 /go.html.markdown
parent1fb48860202f8d1404a2544a147b06dc01665ac2 (diff)
Fix "initialized" typo.
Diffstat (limited to 'go.html.markdown')
-rw-r--r--go.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 758c9ff4..b4c6afff 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -92,7 +92,7 @@ can include line breaks.` // Same string type.
// Arrays have size fixed at compile time.
var a4 [4]int // An array of 4 ints, initialized to all 0.
- a3 := [...]int{3, 1, 5} // An array initialzed with a fixed size of three
+ a3 := [...]int{3, 1, 5} // An array initialized with a fixed size of three
// elements, with values 3, 1, and 5.
// Slices have dynamic size. Arrays and slices each have advantages