From 0c5d65e9348cc6edcd70a354f626b006b50e1ab5 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Thu, 11 Oct 2012 08:43:04 -0700 Subject: [PATCH] tweak --- examples/channels/channels.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/channels/channels.go b/examples/channels/channels.go index af8a9bd..da0c213 100644 --- a/examples/channels/channels.go +++ b/examples/channels/channels.go @@ -1,7 +1,8 @@ -// _Channels_ are the pipes that connect goroutines in a -// concurrent Go program. You can send values into -// channels from one goroutine and receive those values -// into another goroutine. +// _Channels_ are the pipes that connect concurrent +// goroutines. You can send values into channels from one +// goroutine and receive those values into another +// goroutine. Channels are a powerful primitive that +// underly much of Go's functionality. package main