Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Fix go syntax in README #411

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ func InMemoryGatewaySyncConfigReconciler(c reconcilers.Config, namespace string)
// events to watch for changes of the target resource. When the
// informer emits an event, the tracking resources are looked up
// from the tracker and enqueded for reconciliation.
bldr.Watches(&corev1.ConfigMap{}}, reconcilers.EnqueueTracked(ctx))
bldr.Watches(&corev1.ConfigMap{}, reconcilers.EnqueueTracked(ctx))
return nil
},
}
Expand Down