From e8ad73da56daf5ea682a973d099aff25d84f4915 Mon Sep 17 00:00:00 2001 From: Brian Luft Date: Thu, 11 Oct 2012 10:43:57 -0700 Subject: [PATCH] Fixes typo of 'fmt' --- 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 afe7935..8a92674 100644 --- a/examples/slices/slices.go +++ b/examples/slices/slices.go @@ -13,7 +13,7 @@ func main() { // the builtin `make`. Here we make a slice of `int`s // of length `5` (initially empty-valued). s := make([]int, 5) - mt.Println("emp:", s) + fmt.Println("emp:", s) // We can set and get just like with arrays. s[4] = 100