diff options
author | Russ Cox <rsc@golang.org> | 2020-03-09 22:11:04 -0400 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2020-03-11 14:10:08 +0000 |
commit | 482079d678d84e207dd9ae63266c4bd4e653886b (patch) | |
tree | 62aa3b630bbe982904f5495fe2cc53d60a87c92d /content/pipelines.article | |
parent | 0b4fcd39865e575704b5928c9a8f1cd21e18e8b2 (diff) |
content: wrap long lines using new program wrap.go
Wrapping long lines will make diffs easier to read
for the eventual conversion to Markdown.
For golang/go#33955.
Change-Id: Ibcc1b5a84ccc9144b5fcdc9266f2da3e2cf3c5a3
Reviewed-on: https://go-review.googlesource.com/c/blog/+/222839
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'content/pipelines.article')
-rw-r--r-- | content/pipelines.article | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/content/pipelines.article b/content/pipelines.article index febc0c4..de145a1 100644 --- a/content/pipelines.article +++ b/content/pipelines.article @@ -307,6 +307,12 @@ pipeline and defined guidelines for constructing pipelines correctly. Further reading: -- [[https://talks.golang.org/2012/concurrency.slide#1][Go Concurrency Patterns]] ([[https://www.youtube.com/watch?v=f6kdp27TYZs][video]]) presents the basics of Go's concurrency primitives and several ways to apply them. -- [[https://blog.golang.org/advanced-go-concurrency-patterns][Advanced Go Concurrency Patterns]] ([[http://www.youtube.com/watch?v=QDDwwePbDtw][video]]) covers more complex uses of Go's primitives, especially `select`. -- Douglas McIlroy's paper [[https://swtch.com/~rsc/thread/squint.pdf][Squinting at Power Series]] shows how Go-like concurrency provides elegant support for complex calculations. +- [[https://talks.golang.org/2012/concurrency.slide#1][Go Concurrency Patterns]] + ([[https://www.youtube.com/watch?v=f6kdp27TYZs][video]]) presents the basics + of Go's concurrency primitives and several ways to apply them. +- [[https://blog.golang.org/advanced-go-concurrency-patterns][Advanced Go Concurrency Patterns]] + ([[http://www.youtube.com/watch?v=QDDwwePbDtw][video]]) covers more complex + uses of Go's primitives, + especially `select`. +- Douglas McIlroy's paper [[https://swtch.com/~rsc/thread/squint.pdf][Squinting at Power Series]] + shows how Go-like concurrency provides elegant support for complex calculations. |