From d9bdd531068df57f8fb9bfd1f0cf36f3f2e57871 Mon Sep 17 00:00:00 2001 From: ashish91 Date: Sun, 5 Jun 2022 20:06:23 +0530 Subject: [PATCH] Changes 'the' to 'then' in stateful goroutine example --- examples/stateful-goroutines/stateful-goroutines.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/stateful-goroutines/stateful-goroutines.go b/examples/stateful-goroutines/stateful-goroutines.go index cb8b347..11a6f08 100644 --- a/examples/stateful-goroutines/stateful-goroutines.go +++ b/examples/stateful-goroutines/stateful-goroutines.go @@ -71,7 +71,7 @@ func main() { // This starts 100 goroutines to issue reads to the // state-owning goroutine via the `reads` channel. // Each read requires constructing a `readOp`, sending - // it over the `reads` channel, and the receiving the + // it over the `reads` channel, and then receiving the // result over the provided `resp` channel. for r := 0; r < 100; r++ { go func() {