From d36e88f21f56dcf45fed2231fe28f948a31c936b Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Thu, 6 Nov 2025 11:59:13 +0000 Subject: [PATCH] runtime: tweak wording for doc Change-Id: Id0be4b8744ded98cd28f94d89898d8cbac0f543e GitHub-Last-Rev: e8a610e10a6403ad2e6daf99d461a3e539a3630d GitHub-Pull-Request: golang/go#76197 Reviewed-on: https://go-review.googlesource.com/c/go/+/718420 Reviewed-by: Keith Randall Auto-Submit: Keith Randall Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI Reviewed-by: Keith Randall --- src/runtime/mem.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/mem.go b/src/runtime/mem.go index f0b00c77152..f373173eb36 100644 --- a/src/runtime/mem.go +++ b/src/runtime/mem.go @@ -19,7 +19,7 @@ import "unsafe" // fault, may give back unexpected zeroes, etc.). // 4) Ready - may be accessed safely. // -// This set of states is more than is strictly necessary to support all the +// This set of states is more than strictly necessary to support all the // currently supported platforms. One could get by with just None, Reserved, and // Ready. However, the Prepared state gives us flexibility for performance // purposes. For example, on POSIX-y operating systems, Reserved is usually a