From 12fc50080ad1b25a0344bb77324e12cdb9cf8647 Mon Sep 17 00:00:00 2001 From: Hieu Phan Date: Sun, 13 Jan 2019 17:43:02 +0000 Subject: [PATCH] creational/object-pool: fix compile error --- creational/object-pool.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/creational/object-pool.md b/creational/object-pool.md index c50667d..f1698ef 100644 --- a/creational/object-pool.md +++ b/creational/object-pool.md @@ -10,14 +10,14 @@ package pool type Pool chan *Object -func New(total int) *Pool { +func New(total int) Pool { p := make(Pool, total) for i := 0; i < total; i++ { p <- new(Object) } - return &p + return p } ```