mem: fix comment typo (#7482)

This commit is contained in:
CharlesFeng 2024-08-06 23:53:14 +08:00 committed by GitHub
parent e524655bec
commit c8716e591a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ func (p *simpleBufferPool) Get(size int) []byte {
return (*bs)[:size]
}
// A buffer was pulled from the pool, but it is tool small. Put it back in
// A buffer was pulled from the pool, but it is too small. Put it back in
// the pool and create one large enough.
if ok {
p.pool.Put(bs)