Merge pull request #37424 from timchenxiaoyu/master

Automatic merge from submit-queue (batch tested with PRs 37701, 36702, 37145, 37424, 38261)

function name change

function name change
This commit is contained in:
Kubernetes Submit Queue 2016-12-08 04:39:24 -08:00 committed by GitHub
commit 265fcf5df0

View File

@ -28,7 +28,7 @@ import (
"k8s.io/kubernetes/pkg/api/v1"
)
// formatMap formats map[string]string to a string.
// FormatMap formats map[string]string to a string.
func FormatMap(m map[string]string) (fmtStr string) {
for key, value := range m {
fmtStr += fmt.Sprintf("%v=%q\n", key, value)