From 1498ff17518b894e3a81d04994a1d90956691bbd Mon Sep 17 00:00:00 2001 From: Pramono Winata Date: Wed, 9 Oct 2019 23:21:40 +0700 Subject: [PATCH] Update singleton.md --- creational/singleton.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/creational/singleton.md b/creational/singleton.md index 5c3407b..3904f9a 100644 --- a/creational/singleton.md +++ b/creational/singleton.md @@ -16,7 +16,7 @@ var ( ) func New() singleton { - if singleton == nil { + if instance == nil { once.Do(func() { instance = make(singleton) })