]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/go: remove stray reference to mkalldocs.sh
authorThan McIntosh <thanm@google.com>
Fri, 26 May 2023 19:04:37 +0000 (15:04 -0400)
committerGopher Robot <gobot@golang.org>
Fri, 26 May 2023 20:14:26 +0000 (20:14 +0000)
Clean up a stray reference in the docs to 'mkalldocs.sh', which no
longer exists (was replaced by a Go program, in 676794f73e).

Change-Id: I058e86395b14756d7afc184f99f89dbc5ba0184e
Reviewed-on: https://go-review.googlesource.com/c/go/+/498715
Reviewed-by: Bryan Mills <bcmills@google.com>
Run-TryBot: Than McIntosh <thanm@google.com>
Auto-Submit: Than McIntosh <thanm@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>

src/cmd/go/alldocs.go
src/cmd/go/internal/help/help.go

index 6a1cb8b81036954999baab527238151357e41d6e..46466fd5c858594fd1a1bbe8f783ae3fed05d093 100644 (file)
@@ -3,7 +3,7 @@
 // license that can be found in the LICENSE file.
 
 // Code generated by 'go test cmd/go -v -run=TestDocsUpToDate -fixdocs'; DO NOT EDIT.
-// Edit the documentation in other files and rerun mkalldocs.sh to generate this one.
+// Edit the documentation in other files and then execute 'go generate cmd/go' to generate this one.
 
 // Go is a tool for managing Go source code.
 //
index dd1f2f745c0fde22a7f2a9c754436efa55ef20c0..aeaba78df53ee4656a76c3c4ee60f60c91ea7d6b 100644 (file)
@@ -28,7 +28,7 @@ func Help(w io.Writer, args []string) {
                fmt.Fprintln(w, "// license that can be found in the LICENSE file.")
                fmt.Fprintln(w)
                fmt.Fprintln(w, "// Code generated by 'go test cmd/go -v -run=TestDocsUpToDate -fixdocs'; DO NOT EDIT.")
-               fmt.Fprintln(w, "// Edit the documentation in other files and rerun mkalldocs.sh to generate this one.")
+               fmt.Fprintln(w, "// Edit the documentation in other files and then execute 'go generate cmd/go' to generate this one.")
                fmt.Fprintln(w)
                buf := new(strings.Builder)
                PrintUsage(buf, base.Go)