Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mem/buffer_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down