From 93c0fd00d863c8a992c63f1bc01c0877b1bdff0c Mon Sep 17 00:00:00 2001 From: Kevin Z Date: Sat, 24 Aug 2024 11:25:44 -0600 Subject: [PATCH] doc: internal/runtime/sys: fix typo in comment just removed a single byte :) --- src/internal/runtime/sys/nih.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/runtime/sys/nih.go b/src/internal/runtime/sys/nih.go index 17eab67345..a9cbc48e14 100644 --- a/src/internal/runtime/sys/nih.go +++ b/src/internal/runtime/sys/nih.go @@ -14,7 +14,7 @@ type nih struct{} // Other types can embed NotInHeap to make it not-in-heap. Specifically, pointers // to these types must always fail the `runtime.inheap` check. The type may be used // for global variables, or for objects in unmanaged memory (e.g., allocated with -// `sysAlloc`, `persistentalloc`, r`fixalloc`, or from a manually-managed span). +// `sysAlloc`, `persistentalloc`, `fixalloc`, or from a manually-managed span). // // Specifically: //