From 327bfe6520dfddbab964e642d88019328138ac92 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 11 Oct 2012 08:44:37 -0700 Subject: [PATCH] gofmt --- examples/select/select.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/select/select.go b/examples/select/select.go index 81be4d6..af7b3b6 100644 --- a/examples/select/select.go +++ b/examples/select/select.go @@ -14,8 +14,8 @@ func main() { c2 := make(chan string) // Each channel will receive a value after some amount - // of time, to simulate e.g. blocking RPC operations - // executing in concurrent goroutines. + // of time, to simulate e.g. blocking RPC operations + // executing in concurrent goroutines. go func() { time.Sleep(time.Second * 1) c1 <- "one"