diff --git a/doc/articles/c_go_cgo.html b/doc/articles/c_go_cgo.html index ac6bb29a2f6..967f57e7849 100644 --- a/doc/articles/c_go_cgo.html +++ b/doc/articles/c_go_cgo.html @@ -149,9 +149,9 @@ is more complex than a single function call), as in this rewrite of
-To build cgo packages, just use "
+To build cgo packages, just use "
go build
" or
-"go install
+"go install
" as usual. The go tool recognizes the special "C"
import and automatically
uses cgo for those files.
goinstall
command
-(now replaced by go get
)
+(now replaced by go get
)
and its conventions: first, that the import path is derived in a known way from
the URL of the source code; second, that the place to store the sources in
the local file system is derived in a known way from the import path; third,
diff --git a/doc/articles/laws_of_reflection.html b/doc/articles/laws_of_reflection.html
index 826a054f2e1..81f6697ce53 100644
--- a/doc/articles/laws_of_reflection.html
+++ b/doc/articles/laws_of_reflection.html
@@ -213,7 +213,7 @@ type: float64
You might be wondering where the interface is here, since the program looks
like it's passing the float64
variable x
, not an
interface value, to reflect.TypeOf
. But it's there; as
-godoc reports, the signature of
+godoc reports, the signature of
reflect.TypeOf
includes an empty interface:
diff --git a/doc/code.html b/doc/code.html
index 096f5bfc9e3..3ebb0bc9f9d 100644
--- a/doc/code.html
+++ b/doc/code.html
@@ -406,7 +406,7 @@ ok example/newmath 0.165s
-Run go help test
and see the
+Run go help test
and see the
testing package documentation for more detail.
For more information on using remote repositories with the go
command, see
-go help remote
.
+go help remote
.
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
.
@@ -1359,7 +1359,7 @@ builds a test binary, and runs it.
See the How to Write Go Code document,
the testing
package
-and the go test
subcommand for more details.
+and the go test
subcommand for more details.