Merge pull request #24631 from goltermann/spell

Automatic merge from submit-queue

Fix a few typos in comments
This commit is contained in:
k8s-merge-robot 2016-04-22 09:45:46 -07:00
commit aa4da07157
3 changed files with 3 additions and 3 deletions

View File

@ -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 {

View File

@ -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).
//

View File

@ -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.