diff options
author | Tyler Bui-Palsulich <tpalsulich@google.com> | 2017-09-06 15:11:29 -0700 |
---|---|---|
committer | Kevin Burke <kev@inburke.com> | 2017-09-07 19:22:06 +0000 |
commit | 3669720e37cee135644b4f1ade2c55954ad23730 (patch) | |
tree | 493df8615b0c972bfb768d727a7e8577ad1ed160 | |
parent | d7aed5068bf6276a57ac83cf2dfa630a77dd828b (diff) |
content: fix typo in pipelines article
Change-Id: I3fe84b9929fa64585dec5b685b3383612a48ba24
Reviewed-on: https://go-review.googlesource.com/62110
Reviewed-by: Emmanuel Odeke <emm.odeke@gmail.com>
-rw-r--r-- | content/pipelines.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/pipelines.article b/content/pipelines.article index 05772c9..a0fcb2c 100644 --- a/content/pipelines.article +++ b/content/pipelines.article @@ -151,7 +151,7 @@ senders that they will stop accepting input. When `main` decides to exit without receiving all the values from `out`, it must tell the goroutines in the upstream stages to abandon -the values they're trying it send. It does so by sending values on a +the values they're trying to send. It does so by sending values on a channel called `done`. It sends two values since there are potentially two blocked senders: |