From 0d79e325dc45a8cd944fddef821adc155c59ea2a Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Sun, 21 Oct 2012 19:28:50 -0400 Subject: [PATCH] clarify --- examples/stateful-goroutines/stateful-goroutines.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/stateful-goroutines/stateful-goroutines.go b/examples/stateful-goroutines/stateful-goroutines.go index 34d0ec6..4e05a03 100644 --- a/examples/stateful-goroutines/stateful-goroutines.go +++ b/examples/stateful-goroutines/stateful-goroutines.go @@ -22,8 +22,8 @@ import ( // write that state, other goroutines will send messages // to the owning goroutine and receive corresponding // replies. These `readOp` and `writeOp` `struct`s -// encapsulate those requests and provide a way for the -// owning goroutine to respond. +// encapsulate those requests and a way for the owning +// goroutine to respond. type readOp struct { key int resp chan int