github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/talks/2014/readability/struct-field-bad.go (about)

     1  // +build OMIT
     2  
     3  package sample // OMIT
     4  
     5  type Modifier struct {
     6  	pmod   *profile.Modifier
     7  	cache  map[string]time.Time
     8  	client *client.Client
     9  	mu     sync.RWMutex // HL
    10  }