Merge pull request #30060 from xulike666/fix-typo

Fix typo in libcontainerd/client.go
This commit is contained in:
Brian Goff 2017-01-11 12:13:35 -05:00 committed by GitHub
commit c38bb7a725
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ type clientCommon struct {
backend Backend
containers map[string]*container
locker *locker.Locker
mapMutex sync.RWMutex // protects read/write oprations from containers map
mapMutex sync.RWMutex // protects read/write operations from containers map
}
func (clnt *client) lock(containerID string) {