From 5500bbade69094e96315d14ea9c72b8897ebf737 Mon Sep 17 00:00:00 2001 From: "Vojtech Vitek (V-Teq)" Date: Thu, 28 Aug 2014 11:42:18 +0200 Subject: [PATCH] Fix typos in pkg docs Signed-off-by: Vojtech Vitek (V-Teq) --- pkg/client/client.go | 2 +- pkg/kubecfg/proxy_server.go | 2 +- pkg/master/doc.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/client/client.go b/pkg/client/client.go index 9b91ab94e36..6412457d2b6 100644 --- a/pkg/client/client.go +++ b/pkg/client/client.go @@ -33,7 +33,7 @@ import ( "github.com/golang/glog" ) -// Interface holds the methods for clients of Kubenetes, +// Interface holds the methods for clients of Kubernetes, // an interface to allow mock testing. // TODO: these should return/take pointers. type Interface interface { diff --git a/pkg/kubecfg/proxy_server.go b/pkg/kubecfg/proxy_server.go index d254991651c..8d9415c5826 100644 --- a/pkg/kubecfg/proxy_server.go +++ b/pkg/kubecfg/proxy_server.go @@ -24,7 +24,7 @@ import ( "github.com/GoogleCloudPlatform/kubernetes/pkg/client" ) -// ProxyServer is a http.Handler which proxies Kubenetes APIs to remote API server. +// ProxyServer is a http.Handler which proxies Kubernetes APIs to remote API server. type ProxyServer struct { Host string Auth *client.AuthInfo diff --git a/pkg/master/doc.go b/pkg/master/doc.go index fdc205fc20f..5cf495f7abe 100644 --- a/pkg/master/doc.go +++ b/pkg/master/doc.go @@ -14,6 +14,6 @@ See the License for the specific language governing permissions and limitations under the License. */ -// Package master contains code for setting up and running a kubenetes +// Package master contains code for setting up and running a Kubernetes // cluster master. package master