aboutsummaryrefslogtreecommitdiff
path: root/_content/ref/mod.md
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2023-09-26 18:57:12 -0400
committerGopher Robot <gobot@golang.org>2023-09-27 12:52:17 +0000
commitb1c2f44cb44cef9d8ad8626b04a98a8a424d57da (patch)
tree4bee945217dc017712f726d7650e4f31809b2cc7 /_content/ref/mod.md
parentab35c9fe3c985af3471c6f84294efbdfa9b22c0a (diff)
downloadgo-x-website-b1c2f44cb44cef9d8ad8626b04a98a8a424d57da.tar.xz
_content/ref/mod: fix wording error
The text says "Go release version" but should say "Go version". Fixes golang/go#62707. Change-Id: I95f6f95088cd99fdadaa57d301083d484979cdb0 Reviewed-on: https://go-review.googlesource.com/c/website/+/530680 Reviewed-by: Bryan Mills <bcmills@google.com> Auto-Submit: Russ Cox <rsc@golang.org> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Diffstat (limited to '_content/ref/mod.md')
-rw-r--r--_content/ref/mod.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_content/ref/mod.md b/_content/ref/mod.md
index 0b1d3e4e..a2416315 100644
--- a/_content/ref/mod.md
+++ b/_content/ref/mod.md
@@ -534,7 +534,7 @@ major version. Individual minor and patch versions cannot be deprecated;
### `go` directive {#go-mod-file-go}
A `go` directive indicates that a module was written assuming the semantics of a
-given version of Go. The version must be a valid [Go release version](/doc/toolchain#version),
+given version of Go. The version must be a valid [Go version](/doc/toolchain#version),
such as `1.9`, `1.14`, or `1.21rc1`.
The `go` directive sets the minimum version of Go required to use this module.