From 6611e3663384c101713e5c286d1f27d1f610742c Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 11 Oct 2012 12:42:17 -0700 Subject: [PATCH] tweek --- examples/timeouts/timeouts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/timeouts/timeouts.go b/examples/timeouts/timeouts.go index 96773dc..6a2d16c 100644 --- a/examples/timeouts/timeouts.go +++ b/examples/timeouts/timeouts.go @@ -24,7 +24,7 @@ func main() { // awaits a value to be sent after the timeout of // 1s. Since `select` proceeds with the first // receive that's ready, we'll take the timeout case - // if the operation takes more than the allowed 1000ms. + // if the operation takes more than the allowed 2s select { case res := <-c1: fmt.Println(res)