summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWei Huang <wei.huang1@ibm.com>2018-07-06 23:30:18 -0700
committerWei Huang <wei.huang1@ibm.com>2018-07-06 23:30:18 -0700
commit7ca22a5a726725034effb01cb770d51fffebe5b9 (patch)
treeac46636685148a004aa4398f0bc9f74e8c304353
parent9eaa32e5a1e33856a563feb359a40fb420df8507 (diff)
fix a typo in contributors/devel/controllers.md
-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"),
}