doc/debugging_with_gdb.html | 3 ++- doc/effective_go.html | 2 +- doc/effective_go.tmpl | 2 +- doc/go_faq.html | 6 +++--- doc/go_mem.html | 3 ++- doc/go_spec.html | 3 ++- doc/reference-cmd.html | 84 +++++++++++++++++++++++++++++++++++++++++++++++++++++ doc/reference.html | 34 +++++++++++++++++++++++----------- diff --git a/doc/debugging_with_gdb.html b/doc/debugging_with_gdb.html index d5c1a884c08da981f6790f91ff78dea010179411..43977b7772d53723d7ce254941cb958aebfc2261 100644 --- a/doc/debugging_with_gdb.html +++ b/doc/debugging_with_gdb.html @@ -1,5 +1,6 @@

diff --git a/doc/effective_go.html b/doc/effective_go.html index 939d05a7d7b71f9fc78b6502a61cc52a4e9b539f..b9e62b6db488ad423e5c7ebb812fffb219507d85 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -31,7 +31,7 @@

This document gives tips for writing clear, idiomatic Go code. -It augments the language specification, +It augments the language specification, the Tour of Go, and How to Write Go Code, all of which you diff --git a/doc/effective_go.tmpl b/doc/effective_go.tmpl index d95398931621830ec0455cbcf0aaef9a97c24a54..9a0333dbaf6ef2b93e6d418db7b35551b73ba6b0 100644 --- a/doc/effective_go.tmpl +++ b/doc/effective_go.tmpl @@ -27,7 +27,7 @@

This document gives tips for writing clear, idiomatic Go code. -It augments the language specification, +It augments the language specification, the Tour of Go, and How to Write Go Code, all of which you diff --git a/doc/go_faq.html b/doc/go_faq.html index eff75342630df13773cf0ca34673a459c09fd05e..d95da0f6faab4b0003d8946b1b46a3b24a7a721c 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -1060,7 +1060,7 @@ What operations are atomic? What about mutexes?

We haven't fully defined it all yet, but some details about atomicity are -available in the Go Memory Model specification. +available in the Go Memory Model specification.

@@ -1113,7 +1113,7 @@ will experience performance degradation when using multiple OS threads. This is because sending data between threads involves switching contexts, which has significant cost. -For instance, the prime sieve example +For instance, the prime sieve example from the Go specification has no significant parallelism although it launches many goroutines; increasing GOMAXPROCS is more likely to slow it down than to speed it up. @@ -1131,7 +1131,7 @@

Why do T and *T have different method sets?

-From the Go Spec: +From the Go Spec:

diff --git a/doc/go_mem.html b/doc/go_mem.html index 2e341771fb421c0447529f29d972b56022aebe63..a00324158112e6c649a9cdb58f2b9f4f16254a5d 100644 --- a/doc/go_mem.html +++ b/doc/go_mem.html @@ -1,6 +1,7 @@