From d25e30433d559a2fc76edd74264472e773baf889 Mon Sep 17 00:00:00 2001 From: timchenxiaoyu <837829664@qq.com> Date: Thu, 24 Nov 2016 11:37:30 +0800 Subject: [PATCH] Update fieldpath.go --- pkg/fieldpath/fieldpath.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/fieldpath/fieldpath.go b/pkg/fieldpath/fieldpath.go index 08460c00ee8..4e82ee75169 100644 --- a/pkg/fieldpath/fieldpath.go +++ b/pkg/fieldpath/fieldpath.go @@ -27,7 +27,7 @@ import ( "k8s.io/kubernetes/pkg/api/resource" ) -// 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)