xenon icon indicating copy to clipboard operation
xenon copied to clipboard

[propose]standard code style

Open hustjieke opened this issue 3 years ago • 0 comments

fix some bad code style, like:

r.lock.Add(1)

should be channed to

r.wg.Add(1)

func (l *LinuxArgs) Start() []string { 

should be changed to

func (l *LinuxArgs) GenerateStartCmd() []string { 

hustjieke avatar Mar 31 '21 13:03 hustjieke