Merge pull request #5282 from mirake/fix-typos

Fix some typos
This commit is contained in:
k8s-ci-robot 2018-06-06 11:31:26 -07:00 committed by GitHub
commit b552743d69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -599,8 +599,8 @@ func runTestCloudformation(t *testing.T, clusterName string, srcDir string, vers
t.Fatalf("unexpected error expected cloudformation not found for k: %v", key)
}
// Strip cariage return as expectedValue is stored in a yaml string literal
// and golang will automaticaly strip CR from any string literal
// Strip carriage return as expectedValue is stored in a yaml string literal
// and golang will automatically strip CR from any string literal
extractedValueTrimmed := strings.Replace(extractedValue, "\r", "", -1)
if expectedValue != extractedValueTrimmed {