diff options
| author | Kristóf Havasi <kristof.havasi@gmail.com> | 2024-11-04 13:25:34 +0100 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2024-11-05 17:09:38 +0000 |
| commit | 293a205f3c196dcc2eb22bc03b520cad659fce93 (patch) | |
| tree | 0b6374f2c9d604d91d275a0223eb2959e76c1d8b | |
| parent | 08d2403576737c5735d0c1d356490e03a774dff6 (diff) | |
| download | go-293a205f3c196dcc2eb22bc03b520cad659fce93.tar.xz | |
internal/platform: fix 'reportsr' typo in comment
Gets rendered at https://pkg.go.dev/internal/platform#Broken
Change-Id: I128d9f02f113b1b326bc7d6a0e48fe0c944546dc
Reviewed-on: https://go-review.googlesource.com/c/go/+/624915
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
| -rw-r--r-- | src/internal/platform/supported.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/platform/supported.go b/src/internal/platform/supported.go index 193658f878..e864c37d68 100644 --- a/src/internal/platform/supported.go +++ b/src/internal/platform/supported.go @@ -281,7 +281,7 @@ func FirstClass(goos, goarch string) bool { return distInfo[OSArch{goos, goarch}].FirstClass } -// Broken reportsr whether goos/goarch is considered a broken port. +// Broken reports whether goos/goarch is considered a broken port. // (See https://go.dev/wiki/PortingPolicy#broken-ports.) func Broken(goos, goarch string) bool { return distInfo[OSArch{goos, goarch}].Broken |
