From: Michael Munday Date: Wed, 19 Apr 2017 17:48:33 +0000 (-0400) Subject: runtime: avoid restricting GOARCH values in documentation X-Git-Tag: go1.9beta1~616 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fb28f5ba3aa1ca704295b9960c332b0178335788;p=gostls13.git runtime: avoid restricting GOARCH values in documentation Changes the text to match GOOS which appends 'and so on' at the end to avoid restricting the set of possible values. Change-Id: I54bcde71334202cf701662cdc2582c974ba8bf53 Reviewed-on: https://go-review.googlesource.com/41074 Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/extern.go b/src/runtime/extern.go index 2e67d4c3a9..1c5e884088 100644 --- a/src/runtime/extern.go +++ b/src/runtime/extern.go @@ -235,5 +235,5 @@ func Version() string { const GOOS string = sys.GOOS // GOARCH is the running program's architecture target: -// 386, amd64, arm, or s390x. +// one of 386, amd64, arm, s390x, and so on. const GOARCH string = sys.GOARCH