From 7ca22a5a726725034effb01cb770d51fffebe5b9 Mon Sep 17 00:00:00 2001 From: Wei Huang Date: Fri, 6 Jul 2018 23:30:18 -0700 Subject: [PATCH] fix a typo in contributors/devel/controllers.md --- contributors/devel/controllers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributors/devel/controllers.md b/contributors/devel/controllers.md index 50dada023..268e0d103 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"), }