From e8a610e10a6403ad2e6daf99d461a3e539a3630d Mon Sep 17 00:00:00 2001 From: Jes Cok Date: Thu, 6 Nov 2025 19:41:31 +0800 Subject: [PATCH] runtime: tweak wording for doc --- 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 f0b00c77152c53..f373173eb36fc1 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