aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/go/alldocs.go
diff options
context:
space:
mode:
authorqmuntal <quimmuntal@gmail.com>2022-03-11 16:55:19 +0100
committerGopher Robot <gobot@golang.org>2022-10-10 18:54:31 +0000
commit742e0a9720c04b6be694ad8ea8f7831ffa606e40 (patch)
tree37a407964c2720a5c0f3d0338dd8092cbe149e2e /src/cmd/go/alldocs.go
parent388fbf287c29c73fb8cd12f8c24e101d9e790dd2 (diff)
downloadgo-742e0a9720c04b6be694ad8ea8f7831ffa606e40.tar.gz
go-742e0a9720c04b6be694ad8ea8f7831ffa606e40.zip
cmd/go: support shared libraries in 'go version' on Windows
This change modifies 'go version' to support shared windows libraries. Updates #48187 Change-Id: I2e8436b8df84fe76677106fa9ca02dcd1fb90e77 Reviewed-on: https://go-review.googlesource.com/c/go/+/391855 Reviewed-by: Bryan Mills <bcmills@google.com> TryBot-Result: Gopher Robot <gobot@golang.org> Run-TryBot: Quim Muntal <quimmuntal@gmail.com> Run-TryBot: Bryan Mills <bcmills@google.com> Reviewed-by: Joedian Reid <joedian@golang.org> Auto-Submit: Bryan Mills <bcmills@google.com>
Diffstat (limited to 'src/cmd/go/alldocs.go')
-rw-r--r--src/cmd/go/alldocs.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/cmd/go/alldocs.go b/src/cmd/go/alldocs.go
index 57d7c4ebf78..6a348dbb75d 100644
--- a/src/cmd/go/alldocs.go
+++ b/src/cmd/go/alldocs.go
@@ -1774,10 +1774,9 @@
//
// go version [-m] [-v] [file ...]
//
-// Version prints the build information for Go executables.
+// Version prints the build information for Go binary files.
//
-// Go version reports the Go version used to build each of the named
-// executable files.
+// Go version reports the Go version used to build each of the named files.
//
// If no files are named on the command line, go version prints its own
// version information.
@@ -1787,7 +1786,7 @@
// By default, go version does not report unrecognized files found
// during a directory scan. The -v flag causes it to report unrecognized files.
//
-// The -m flag causes go version to print each executable's embedded
+// The -m flag causes go version to print each file's embedded
// module version information, when available. In the output, the module
// information consists of multiple lines following the version line, each
// indented by a leading tab character.