From d6563c9cfa60e6b0529dfefcaee51116767b7654 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Wed, 9 Jan 2019 11:17:28 +0200 Subject: [PATCH] Spelling fixes for util.go --- src/util/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/util.go b/src/util/util.go index 65e6d463..2644ddc5 100644 --- a/src/util/util.go +++ b/src/util/util.go @@ -20,7 +20,7 @@ func UnlockThread() { } // This is used to buffer recently used slices of bytes, to prevent allocations in the hot loops. -// It's used like a sync.Pool, but with a fixed size and typechecked without type casts to/from interface{} (which were making the profiles look ugly). +// It's used like a sync.Pool, but with a fixed size and type checked without type casts to/from interface{} (which were making the profiles look ugly). var byteStore chan []byte func init() {