1
0
mirror of https://github.com/golang/go synced 2024-11-22 03:14:41 -07:00

doc: internal/runtime/sys: fix typo in comment

just removed a single byte :)
This commit is contained in:
Kevin Z 2024-08-24 11:25:44 -06:00 committed by GitHub
parent 96d8ff00c2
commit 93c0fd00d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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:
//