diff --git a/pkg/apiserver/audit/audit.go b/pkg/apiserver/audit/audit.go index 1a9d437e34a..969119ad68e 100644 --- a/pkg/apiserver/audit/audit.go +++ b/pkg/apiserver/audit/audit.go @@ -49,7 +49,7 @@ func (a *auditResponseWriter) WriteHeader(code int) { } // fancyResponseWriterDelegator implements http.CloseNotifier, http.Flusher and -// http.Hijacker which are needed to make certain http operation (eg. watch, rsh, etc) +// http.Hijacker which are needed to make certain http operation (e.g. watch, rsh, etc) // working. type fancyResponseWriterDelegator struct { *auditResponseWriter diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index e9143abb622..c12c8375fdd 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -1370,7 +1370,7 @@ func CheckInvariants(events []watch.Event, fns ...InvariantFunc) error { // Returns an error if timeout occurs first, or pod goes in to failed state. func WaitForPodRunningInNamespace(c *client.Client, pod *api.Pod) error { // this short-cicuit is needed for cases when we pass a list of pods instead - // of newly created pod (eg. VerifyPods) which means we are getting already + // of newly created pod (e.g. VerifyPods) which means we are getting already // running pod for which waiting does not make sense and will always fail if pod.Status.Phase == api.PodRunning { return nil