1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00

Fix build error

remove asterisk
This commit is contained in:
james4e 2016-10-09 14:46:58 +08:00 committed by GitHub
parent f7e32625ec
commit 304c68c489

View file

@ -11,9 +11,9 @@ type singleton map[string]string
var once sync.Once
var instance *singleton
var instance singleton
func New() *singleton {
func New() singleton {
once.Do(func() {
instance = make(singleton)
})