From a517d2d1537f5b02e9f6c23d4794160c6c2bc157 Mon Sep 17 00:00:00 2001 From: Albert Date: Sat, 2 Jul 2016 00:46:08 +0500 Subject: [PATCH] Fix typo (#6) --- pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pool.go b/pool.go index fae4f95..8bb4134 100644 --- a/pool.go +++ b/pool.go @@ -63,7 +63,7 @@ func Put(b *ByteBuffer) { defaultPool.Put(b) } // Put releases byte buffer obtained via Get to the pool. // -// The bufer mustn't be accessed after returning to the pool. +// The buffer mustn't be accessed after returning to the pool. func (p *Pool) Put(b *ByteBuffer) { idx := index(len(b.B))