Fix typos in user-facing strings

This commit is contained in:
Andrew Seidl
2015-01-18 01:32:34 -06:00
parent eeb712d163
commit 6dee1d7fa4
17 changed files with 26 additions and 26 deletions

View File

@@ -55,7 +55,7 @@ func TestBasicImage(c *client.Client, image string) bool {
}
// Delete the controller
if err = c.ReplicationControllers(ns).Delete(name); err != nil {
glog.Warningf("Failed to delete straggler replicatior controller: %v", err)
glog.Warningf("Failed to delete straggler replication controller: %v", err)
}
break
}
@@ -154,7 +154,7 @@ func TestBasicImage(c *client.Client, image string) bool {
// Resize the replication controller to zero to get rid of pods.
controller.Spec.Replicas = 0
if _, err = c.ReplicationControllers(ns).Update(controller); err != nil {
glog.Errorf("Failed to resize replication controllert to zero: %v", err)
glog.Errorf("Failed to resize replication controller to zero: %v", err)
return false
}

View File

@@ -27,7 +27,7 @@ import (
// for the providers GCE and GKE.
func TestPrivate(c *client.Client) bool {
if testContext.provider != "gce" && testContext.provider != "gke" {
glog.Infof("Skipping test private which is only supported for proivders gce and gke (not %s)", testContext.provider)
glog.Infof("Skipping test private which is only supported for providers gce and gke (not %s)", testContext.provider)
return true
}
glog.Info("Calling out to TestBasic")