diff --git a/doc/effective_go.html b/doc/effective_go.html index c522b9ffb7a..aee1c145971 100644 --- a/doc/effective_go.html +++ b/doc/effective_go.html @@ -214,7 +214,7 @@ not be used. One adjustment godoc does do is to display indented text in a fixed-width font, suitable for program snippets. The package comment for the -fmt package uses this to good effect. +fmt package uses this to good effect.

@@ -710,7 +710,7 @@ Erroneous encodings consume one byte and produce the replacement rune U+FFFD. (The name (with associated builtin type) rune is Go terminology for a single Unicode code point. -See the language specification +See the language specification for details.) The loop

diff --git a/doc/go1.3.html b/doc/go1.3.html index a3d8be47dea..62a5c0e1e65 100644 --- a/doc/go1.3.html +++ b/doc/go1.3.html @@ -233,7 +233,7 @@ The cumulative effect can be a 50-70% reduction in collector pause time.
  • -The race detector (see this guide) +The race detector (see this guide) is now about 40% faster.
  • diff --git a/doc/go_faq.html b/doc/go_faq.html index 9606213b1f3..b1945dda830 100644 --- a/doc/go_faq.html +++ b/doc/go_faq.html @@ -940,9 +940,9 @@ How are libraries documented? There is a program, godoc, written in Go, that extracts package documentation from the source code. It can be used on the command line or on the web. An instance is running at -http://golang.org/pkg/. +http://golang.org/pkg/. In fact, godoc implements the full site at -http://golang.org/. +http://golang.org/.

    @@ -1437,7 +1437,7 @@ each closure shares that single variable. When the closure runs, it prints the value of v at the time fmt.Println is executed, but v may have been modified since the goroutine was launched. To help detect this and other problems before they happen, run -go vet. +go vet.

    diff --git a/doc/go_spec.html b/doc/go_spec.html index 968db440f25..e6831e90918 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -23,7 +23,7 @@ TODO

    This is a reference manual for the Go programming language. For -more information and other documents, see http://golang.org. +more information and other documents, see http://golang.org.