We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 11dfabf + 2d885a9 commit b704f44Copy full SHA for b704f44
pkg/builder/controller.go
@@ -164,13 +164,13 @@ func (blder *Builder) Named(name string) *Builder {
164
return blder
165
}
166
167
-// Complete builds the Application ControllerManagedBy.
+// Complete builds the Application Controller.
168
func (blder *Builder) Complete(r reconcile.Reconciler) error {
169
_, err := blder.Build(r)
170
return err
171
172
173
-// Build builds the Application ControllerManagedBy and returns the Controller it created.
+// Build builds the Application Controller and returns the Controller it created.
174
func (blder *Builder) Build(r reconcile.Reconciler) (controller.Controller, error) {
175
if r == nil {
176
return nil, fmt.Errorf("must provide a non-nil Reconciler")
0 commit comments