diff --git a/creational/singleton.md b/creational/singleton.md index fa6c463..345e101 100644 --- a/creational/singleton.md +++ b/creational/singleton.md @@ -9,14 +9,12 @@ package singleton type singleton map[string]string -var once sync.Once - var instance singleton func New() singleton { - once.Do(func() { + if instance == nil { instance = make(singleton) - }) + } return instance }