Make the GetInstance concurrent test more readable

This commit is contained in:
Deluan 2023-12-28 16:50:07 -05:00
parent 6e2be7f95f
commit 6f7b48202e
2 changed files with 33 additions and 14 deletions

View file

@ -14,7 +14,7 @@ var (
)
// GetInstance returns an existing instance of object. If it is not yet created, calls `constructor`, stores the
// result for future calls and return it
// result for future calls and returns it
func GetInstance[T any](constructor func() T) T {
var v T
name := reflect.TypeOf(v).String()