From 0c7c710b59be8d02fe95a34030ee2defbfa899bc Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Fri, 20 Aug 2021 18:26:11 -0400 Subject: [PATCH] =?UTF-8?q?internal/dl:=20change=20GOARCH=3Darm64=20pretty?= =?UTF-8?q?=20string=20ARMv8=20=E2=86=92=20ARM64?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ARM64 makes for a better pretty string for the "arm64" architecture. It's more clear that it's 64-bit, and it's closer to what we almost always say. Thanks to Cherry for making this suggestion. For golang/go#38485. For golang/go#36439. Change-Id: I89c175ea2bafce6f191ae797ed982c73962ee5da Reviewed-on: https://go-review.googlesource.com/c/website/+/344069 Trust: Dmitri Shuralyov Run-TryBot: Dmitri Shuralyov TryBot-Result: Go Bot Reviewed-by: Heschi Kreinick --- internal/dl/dl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dl/dl.go b/internal/dl/dl.go index aaedf0ab06..6a6c237046 100644 --- a/internal/dl/dl.go +++ b/internal/dl/dl.go @@ -362,7 +362,7 @@ var prettyStrings = map[string]string{ "386": "x86", "amd64": "x86-64", "armv6l": "ARMv6", - "arm64": "ARMv8", + "arm64": "ARM64", "archive": "Archive", "installer": "Installer",