From d29fcfc9cd7268f6d87c70264f0d64deaf8f5ade Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Sat, 13 Oct 2012 10:50:57 -0700 Subject: [PATCH] spelling --- examples/slices/slices.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/slices/slices.go b/examples/slices/slices.go index 76db229..6fbfa77 100644 --- a/examples/slices/slices.go +++ b/examples/slices/slices.go @@ -54,7 +54,7 @@ func main() { l = s[4:] fmt.Println("sl3:", l) - // We can declare and initalize a slice in a single + // We can declare and initialize a slice in a single // line as well. t := []int{1, 2, 3, 4, 5} fmt.Println("dcl:", t)