Skip to content

Commit

Permalink
mem: fix comment typo (grpc#7482)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengjun2016 authored Aug 6, 2024
1 parent e524655 commit c8716e5
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit c8716e5

Please sign in to comment.