diff --git a/doc/go1.13.html b/doc/go1.13.html index 594b75bcfac..d8ef6db073f 100644 --- a/doc/go1.13.html +++ b/doc/go1.13.html @@ -265,6 +265,25 @@ TODO 0o660, 1.2e3, and 1i after applying gofmt.

+

godoc and go doc

+ +

+ The godoc webserver is no longer included in the main binary distribution. + To run the godoc webserver locally, manually install it first: +

+go get golang.org/x/tools/cmd/godoc
+godoc
+
+

+ +

+ The + go doc + command now always includes the package clause in its output, except for + commands. This replaces the previous behavior where a heuristic was used, + causing the package clause to be omitted under certain conditions. +

+

Runtime

@@ -333,7 +352,6 @@ TODO

-