From fffe490d49f5d10a89378cd0fb330c39c3601499 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Sat, 13 Oct 2012 11:54:41 -0700 Subject: [PATCH] gofmt --- examples/slices/slices.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/slices/slices.go b/examples/slices/slices.go index 2fa9626..a30a9d0 100644 --- a/examples/slices/slices.go +++ b/examples/slices/slices.go @@ -41,8 +41,8 @@ func main() { fmt.Println("cpy:", c) // Slices support a "slice" operator with the syntax - // `slice[low:high]`. For example, this gets a slice - // of the elements 4, 5, and 6. + // `slice[low:high]`. For example, this gets a slice + // of the elements 4, 5, and 6. l := s[4:7] fmt.Println("sl1:", l) @@ -55,7 +55,7 @@ func main() { fmt.Println("sl3:", l) // We can declare and initialize a variable for slice - // in a single line as well. + // in a single line as well. t := []int{1, 2, 3, 4, 5} fmt.Println("dcl:", t)