Spelling fixes for util.go

This commit is contained in:
Tristan B. Kildaire 2019-01-09 11:17:28 +02:00 committed by GitHub
parent 821ca07e0b
commit d6563c9cfa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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() {