Fix misc typos

Mostly in comments, but also renamed the (test) function
migUdpateCmdBase -> migUpdateCmdBase.
This commit is contained in:
Justin Santa Barbara
2015-10-19 22:41:58 -04:00
parent c4779fbc4f
commit 67d3a93166
15 changed files with 28 additions and 28 deletions

View File

@@ -326,7 +326,7 @@ func createPD() (string, error) {
pdName := fmt.Sprintf("%s-%s", testContext.prefix, string(util.NewUUID()))
zone := testContext.CloudConfig.Zone
// TODO: make this hit the compute API directly instread of shelling out to gcloud.
// TODO: make this hit the compute API directly instead of shelling out to gcloud.
err := exec.Command("gcloud", "compute", "--quiet", "--project="+testContext.CloudConfig.ProjectID, "disks", "create", "--zone="+zone, "--size=10GB", pdName).Run()
if err != nil {
return "", err