From dddc6cb6c88d7752ddf6ccecfa19329b6837d37a Mon Sep 17 00:00:00 2001 From: goltermann Date: Thu, 21 Apr 2016 15:16:10 -0700 Subject: [PATCH] Fix a few spellings. --- pkg/proxy/iptables/proxier.go | 2 +- pkg/runtime/serializer/protobuf/protobuf.go | 2 +- test/e2e/framework/perf_util.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/proxy/iptables/proxier.go b/pkg/proxy/iptables/proxier.go index 70119eaaffa..b97a29ed8c7 100644 --- a/pkg/proxy/iptables/proxier.go +++ b/pkg/proxy/iptables/proxier.go @@ -620,7 +620,7 @@ func (proxier *Proxier) deleteServiceConnections(svcIPs []string) { } } -//execConntrackTool executes conntrack tool using given paramters +//execConntrackTool executes conntrack tool using given parameters func (proxier *Proxier) execConntrackTool(parameters ...string) error { conntrackPath, err := proxier.exec.LookPath("conntrack") if err != nil { diff --git a/pkg/runtime/serializer/protobuf/protobuf.go b/pkg/runtime/serializer/protobuf/protobuf.go index eb8c41ad680..957f1454b12 100644 --- a/pkg/runtime/serializer/protobuf/protobuf.go +++ b/pkg/runtime/serializer/protobuf/protobuf.go @@ -31,7 +31,7 @@ import ( var ( // protoEncodingPrefix serves as a magic number for an encoded protobuf message on this serializer. All - // proto messages serialized by this schema will be preceeded by the bytes 0x6b 0x38 0x73, with the fourth + // proto messages serialized by this schema will be precedeed by the bytes 0x6b 0x38 0x73, with the fourth // byte being reserved for the encoding style. The only encoding style defined is 0x00, which means that // the rest of the byte stream is a message of type k8s.io.kubernetes.pkg.runtime.Unknown (proto2). // diff --git a/test/e2e/framework/perf_util.go b/test/e2e/framework/perf_util.go index f1e76f07d58..95a6aea9020 100644 --- a/test/e2e/framework/perf_util.go +++ b/test/e2e/framework/perf_util.go @@ -22,7 +22,7 @@ import ( "k8s.io/kubernetes/test/e2e/perftype" ) -// TODO(random-liu): Change the tests to actually use PerfData from the begining instead of +// TODO(random-liu): Change the tests to actually use PerfData from the beginning instead of // translating one to the other here. // ApiCallToPerfData transforms APIResponsiveness to PerfData.