Merge pull request #55145 from huangjiuyuan/fix-manager-typo

Automatic merge from submit-queue (batch tested with PRs 52259, 53951, 54385, 54805, 55145). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.

Fix a typo in NewManager function

**What this PR does / why we need it**:
Fix a typo in NewManager function

**Special notes for your reviewer**:

**Release note**:

`None`
This commit is contained in:
Kubernetes Submit Queue 2017-12-13 21:26:05 -08:00 committed by GitHub
commit d5e3a792eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,7 @@ type manager struct {
var _ Manager = &manager{}
// NewManager creates ane returns an empty results manager.
// NewManager creates and returns an empty results manager.
func NewManager() Manager {
return &manager{
cache: make(map[kubecontainer.ContainerID]Result),