summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authork8s-ci-robot <k8s-ci-robot@users.noreply.github.com>2018-07-07 09:17:17 -0700
committerGitHub <noreply@github.com>2018-07-07 09:17:17 -0700
commit7d990ee54de77999e9fa1abf6a2187e34fe0b82a (patch)
treeac46636685148a004aa4398f0bc9f74e8c304353
parent9eaa32e5a1e33856a563feb359a40fb420df8507 (diff)
parent7ca22a5a726725034effb01cb770d51fffebe5b9 (diff)
Merge pull request #2353 from Huang-Wei/fix-typo-controllers.md
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"),
}