From 0dab9f524c778b176e4e4b3652f53ea5e2873d26 Mon Sep 17 00:00:00 2001 From: Tianon Gravi Date: Mon, 13 Mar 2023 14:21:34 -0700 Subject: [PATCH] runtime/debug: replace "GOARM64" with "GOARM" in docs The former does not exist (yet) but the latter very much exists and is in active use. --- src/runtime/debug/mod.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/debug/mod.go b/src/runtime/debug/mod.go index 8b7a42305e3..7f85174c064 100644 --- a/src/runtime/debug/mod.go +++ b/src/runtime/debug/mod.go @@ -78,7 +78,7 @@ type Module struct { // - CGO_CXXFLAGS: the effective CGO_CPPFLAGS environment variable // - CGO_LDFLAGS: the effective CGO_CPPFLAGS environment variable // - GOARCH: the architecture target -// - GOAMD64/GOARM64/GO386/etc: the architecture feature level for GOARCH +// - GOAMD64/GOARM/GO386/etc: the architecture feature level for GOARCH // - GOOS: the operating system target // - vcs: the version control system for the source tree where the build ran // - vcs.revision: the revision identifier for the current commit or checkout