summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contributors/devel/controllers.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/contributors/devel/controllers.md b/contributors/devel/controllers.md
index 50dada02..268e0d10 100644
--- a/contributors/devel/controllers.md
+++ b/contributors/devel/controllers.md
@@ -86,7 +86,7 @@ type Controller struct {
func NewController(pods informers.PodInformer) *Controller {
c := &Controller{
pods: pods.Lister(),
- podsSynced pods.Informer().HasSynced,
+ podsSynced: pods.Informer().HasSynced,
queue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "controller-name"),
}