From 34e96356b7d6a5d4e1f69a92585707cfe853cc0d Mon Sep 17 00:00:00 2001 From: changwang ma Date: Wed, 23 Oct 2024 02:04:20 +0800 Subject: [PATCH] runtime: fix typo in error message Change-Id: I27bf98e84545746d90948dd06c4a7bd70782c49d Reviewed-on: https://go-review.googlesource.com/c/go/+/621895 Reviewed-by: Ian Lance Taylor Auto-Submit: Ian Lance Taylor LUCI-TryBot-Result: Go LUCI Reviewed-by: Keith Randall --- src/runtime/malloc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/malloc.go b/src/runtime/malloc.go index 83f7f64f6f..02c096a859 100644 --- a/src/runtime/malloc.go +++ b/src/runtime/malloc.go @@ -454,7 +454,7 @@ func mallocinit() { } if minTagBits > taggedPointerBits { - throw("taggedPointerbits too small") + throw("taggedPointerBits too small") } // Initialize the heap. -- 2.48.1