Merge pull request #100406 from tomkukral/retry-doc

fix typo in retry doc
This commit is contained in:
Kubernetes Prow Robot 2021-08-04 18:58:50 -07:00 committed by GitHub
commit bf22025950
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ func OnError(backoff wait.Backoff, retriable func(error) bool, fn func() error)
// // if you got a conflict on the last update attempt then you need to get
// // the current version before making your own changes.
// pod, err := c.Pods("mynamespace").Get(name, metav1.GetOptions{})
// if err ! nil {
// if err != nil {
// return err
// }
//