diff --git a/mem/buffer_pool.go b/mem/buffer_pool.go index d2e8cd448df5..07c7e1ed345a 100644 --- a/mem/buffer_pool.go +++ b/mem/buffer_pool.go @@ -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)