From dc7c349b7b089a6d0a7903cb3dc074cba4d5b1bf Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Fri, 10 Jan 2014 06:28:04 -0800 Subject: [PATCH] Remove superfluous sentance. Ref #63 --- examples/channels/channels.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/channels/channels.go b/examples/channels/channels.go index da0c213..94fb458 100644 --- a/examples/channels/channels.go +++ b/examples/channels/channels.go @@ -1,8 +1,7 @@ // _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. +// goroutine. package main