From 36a81cf5e9ba7d1064fc788d93616dc57286f572 Mon Sep 17 00:00:00 2001 From: Zak Johnson Date: Sun, 19 Jan 2014 10:10:58 -0800 Subject: [PATCH] Fix comment typo in select.go --- examples/select/select.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/select/select.go b/examples/select/select.go index 93cec6e..fba2346 100644 --- a/examples/select/select.go +++ b/examples/select/select.go @@ -1,6 +1,6 @@ // Go's _select_ lets you wait on multiple channel // operations. Combining goroutines and channels with -// select is powerful feature of Go. +// select is a powerful feature of Go. package main